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 c9c5bf2 commit 8fa88a5Copy full SHA for 8fa88a5
Lib/pdb.py
@@ -3129,7 +3129,7 @@ def cmdloop(self):
3129
self.process_payload(payload)
3130
3131
def send_interrupt(self):
3132
- if hasattr(signal, "pthread_kill"):
+ if sys.platform != "win32":
3133
# On Unix, send a SIGINT to the remote process, which interrupts IO
3134
# and makes it raise a KeyboardInterrupt on the main thread when
3135
# PyErr_CheckSignals is called or the eval loop regains control.
0 commit comments