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.

connection.py 333B

12345678910111213
  1. from __future__ import annotations
  2. import warnings
  3. # lazy_import doesn't support this use case.
  4. from .protocol import SEND_EOF, Protocol as Connection, Side, State # noqa: F401
  5. warnings.warn(
  6. "websockets.connection was renamed to websockets.protocol "
  7. "and Connection was renamed to Protocol",
  8. DeprecationWarning,
  9. )