選択できるのは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. )