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 fa0b443 commit a34700eCopy full SHA for a34700e
ipykernel/inprocess/ipkernel.py
@@ -133,9 +133,9 @@ def _redirected_io(self):
133
134
def _io_dispatch(self, change):
135
"""Called when a message is sent to the IO socket."""
136
- assert self.iopub_socket.io_thread is not None
+ assert self.iopub_socket is not None
137
assert self.session is not None
138
- _ident, msg = self.session.recv(self.iopub_socket.io_thread.socket, copy=False)
+ _ident, msg = self.session.recv(self.iopub_socket.socket, copy=False)
139
for frontend in self.frontends:
140
assert frontend is not None
141
frontend.iopub_channel.call_handlers(msg)
0 commit comments