master
/ miniconda3 / envs / poem / lib / python3.10 / site-packages / websockets / connection.py

connection.py @a8e0244 raw · history · blame

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,
)