Thanks to visit codestin.com Credit goes to github.com
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 934676a commit 91f9bddCopy full SHA for 91f9bdd
1 file changed
Lib/test/test_signal.py
@@ -705,6 +705,10 @@ def test_sigtimedwait_negative_timeout(self):
705
706
@unittest.skipUnless(hasattr(signal, 'sigwaitinfo'),
707
'need signal.sigwaitinfo()')
708
+ # Issue #18238: sigwaitinfo() can be interrupted on Linux (raises
709
+ # InterruptedError), but not on AIX
710
+ @unittest.skipIf(sys.platform.startswith("aix"),
711
+ 'signal.sigwaitinfo() cannot be interrupted on AIX')
712
def test_sigwaitinfo_interrupted(self):
713
self.wait_helper(signal.SIGUSR1, '''
714
def test(signum):
0 commit comments