You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
555 B
Python

"""This module is deprecated in Jupyter Server 2.0"""
# Raise a warning that this module is deprecated.
import warnings
from tornado.websocket import WebSocketHandler
from jupyter_server.base.websocket import WebSocketMixin
from jupyter_server.services.kernels.connection.base import (
deserialize_binary_message,
deserialize_msg_from_ws_v1,
serialize_binary_message,
serialize_msg_to_ws_v1,
)
warnings.warn(
"jupyter_server.base.zmqhandlers module is deprecated in Jupyter Server 2.0",
DeprecationWarning,
stacklevel=2,
)