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 7b84abd commit 00c8ccbCopy full SHA for 00c8ccb
Lib/test/test_interpreters/test_api.py
@@ -2365,6 +2365,7 @@ def test_set___main___attrs(self):
2365
self.assertEqual(rc, 0)
2366
2367
@support.requires_subprocess()
2368
+ @unittest.skipIf(os.name == 'nt', 'SIGINT not supported on windows')
2369
def test_interpreter_handles_signals(self):
2370
import subprocess
2371
import sys
@@ -2395,6 +2396,7 @@ def test_interpreter_handles_signals(self):
2395
2396
self.assertIn(b"KeyboardInterrupt", stderr)
2397
2398
2399
2400
def test_legacy_interpreter_does_not_handle_signals(self):
2401
2402
0 commit comments