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.

__init__.py 432B

1234567891011121314
  1. import sys
  2. __version__ = "4.0.0"
  3. # Windows on Python 3.8+ uses ProactorEventLoop, which is not compatible with
  4. # Twisted. Does not implement add_writer/add_reader.
  5. # See https://bugs.python.org/issue37373
  6. # and https://twistedmatrix.com/trac/ticket/9766
  7. PY38_WIN = sys.version_info >= (3, 8) and sys.platform == "win32"
  8. if PY38_WIN:
  9. import asyncio
  10. asyncio.set_event_loop_policy(asyncio.WindowsSelectorEventLoopPolicy())