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.
 
 
 
 

19 lignes
568 B

  1. from __future__ import annotations
  2. import warnings
  3. with warnings.catch_warnings():
  4. # Suppress redundant DeprecationWarning raised by websockets.legacy.
  5. warnings.filterwarnings("ignore", category=DeprecationWarning)
  6. from .legacy.auth import *
  7. from .legacy.auth import __all__ # noqa: F401
  8. warnings.warn( # deprecated in 14.0 - 2024-11-09
  9. "websockets.auth, an alias for websockets.legacy.auth, is deprecated; "
  10. "see https://websockets.readthedocs.io/en/stable/howto/upgrade.html "
  11. "for upgrade instructions",
  12. DeprecationWarning,
  13. )