您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 

13 行
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. )