Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 

19 строки
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. )