blob: ad9aa25064f626754bda8a8bb149d974002a064e (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
from __future__ import annotations
import warnings
warnings.warn( # deprecated in 14.0 - 2024-11-09
"websockets.legacy is deprecated; "
"see https://websockets.readthedocs.io/en/stable/howto/upgrade.html "
"for upgrade instructions",
DeprecationWarning,
)
|