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 91e0877 commit 1848db8Copy full SHA for 1848db8
1 file changed
Lib/test/test_subprocess.py
@@ -675,6 +675,8 @@ def test_communicate_epipe_only_stdin(self):
675
time.sleep(2)
676
p.communicate(b"x" * 2**20)
677
678
+ @unittest.skipUnless(hasattr(signal, 'SIGALRM'),
679
+ "Requires signal.SIGALRM")
680
def test_communicate_eintr(self):
681
# Issue #12493: communicate() should handle EINTR
682
def handler(signum, frame):
0 commit comments