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 ceabb6b commit aeff007Copy full SHA for aeff007
ipykernel/zmqshell.py
@@ -517,6 +517,14 @@ class ZMQInteractiveShell(InteractiveShell):
517
def __init__(self, *args, **kwargs):
518
super().__init__(*args, **kwargs)
519
520
+ # Suppress Trio's signal handling warning on Windows with ProactorEventLoop
521
+ # This occurs when Trio is imported and finds signal handling already taken by Proactor
522
+ warnings.filterwarnings(
523
+ "ignore",
524
+ message=".*Trio's signal handling code might have collided.*",
525
+ category=RuntimeWarning,
526
+ )
527
+
528
# tqdm has an incorrect detection of ZMQInteractiveShell when launch via
529
# a scheduler that bypass IPKernelApp Think of JupyterHub cluster
530
# spawners and co. as of end of Feb 2025, the maintainer has been
0 commit comments