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 a3f73e1 commit 6d9a14aCopy full SHA for 6d9a14a
2 files changed
.github/workflows/ci.yml
@@ -27,6 +27,8 @@ jobs:
27
- "3.11"
28
- "3.12"
29
- "3.13"
30
+ - "3.14"
31
+ - "3.14t"
32
- "pypy-3.11"
33
steps:
34
- name: Checkout
ipykernel/shellchannel.py
@@ -26,7 +26,7 @@ def __init__(
26
"""Initialize the thread."""
super().__init__(name=SHELL_CHANNEL_THREAD_NAME, **kwargs)
self._manager: SubshellManager | None = None
- self._context = context
+ self._zmq_context = context # Avoid use of self._context
self._shell_socket = shell_socket
self.asyncio_lock = asyncio.Lock()
@@ -36,7 +36,7 @@ def manager(self) -> SubshellManager:
36
# Lazy initialisation.
37
if self._manager is None:
38
self._manager = SubshellManager(
39
- self._context,
+ self._zmq_context,
40
self.io_loop,
41
self._shell_socket,
42
)
0 commit comments