summaryrefslogtreecommitdiff
path: root/venv/lib/python3.11/site-packages/websockets/connection.py
blob: 88bcda1aafe7e59b336fcb0ef2519a609d581e0f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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,
)