We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f8a8ed5 commit 3e21f96Copy full SHA for 3e21f96
1 file changed
ipykernel/inprocess/socket.py
@@ -32,7 +32,8 @@ def send_multipart(self, msg_parts, flags=0, copy=True, track=False):
32
@classmethod
33
def register(cls, other_cls):
34
if other_cls is not DummySocket:
35
- warnings.warn("SocketABC is deprecated.", DeprecationWarning)
+ warnings.warn("SocketABC is deprecated since ipykernel version 4.5.0.",
36
+ DeprecationWarning, stacklevel=2)
37
abc.ABCMeta.register(cls, other_cls)
38
39
#-----------------------------------------------------------------------------
0 commit comments