Funktionierender Prototyp des Serious Games zur Vermittlung von Wissen zu Software-Engineering-Arbeitsmodellen.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

__main__.py 386B

1234567891011121314
  1. # Copyright (c) Twisted Matrix Laboratories.
  2. # See LICENSE for details.
  3. # Make the twisted module executable with the default behaviour of
  4. # running twist.
  5. # This is not a docstring to avoid changing the string output of twist.
  6. import sys
  7. from pkg_resources import load_entry_point
  8. if __name__ == "__main__":
  9. sys.exit(load_entry_point("Twisted", "console_scripts", "twist")())