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.
 
 
 
 

13 line
323 B

  1. from __future__ import annotations
  2. import warnings
  3. from .protocol import SEND_EOF, Protocol as Connection, Side, State # noqa: F401
  4. warnings.warn( # deprecated in 11.0 - 2023-04-02
  5. "websockets.connection was renamed to websockets.protocol "
  6. "and Connection was renamed to Protocol",
  7. DeprecationWarning,
  8. )