Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 

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