You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
333 B
14 lines
333 B
from __future__ import annotations
|
|
|
|
import warnings
|
|
|
|
# lazy_import doesn't support this use case.
|
|
from .protocol import SEND_EOF, Protocol as Connection, Side, State # noqa: F401
|
|
|
|
|
|
warnings.warn(
|
|
"websockets.connection was renamed to websockets.protocol "
|
|
"and Connection was renamed to Protocol",
|
|
DeprecationWarning,
|
|
)
|