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 6a8f7b7 commit 4e8f549Copy full SHA for 4e8f549
1 file changed
Lib/test/test_pty.py
@@ -25,9 +25,8 @@ def debug(msg):
25
# " An optional feature could not be imported " ... ?
26
raise TestSkipped, "Pseudo-terminals (seemingly) not functional."
27
28
-# this hangs on HPUX 11, comment out for now until we can determine cause
29
-##if not os.isatty(slave_fd):
30
-## raise TestFailed, "slave_fd is not a tty"
+if not os.isatty(slave_fd):
+ raise TestFailed, "slave_fd is not a tty"
31
32
# IRIX apparently turns \n into \r\n. Allow that, but avoid allowing other
33
# differences (like extra whitespace, trailing garbage, etc.)
0 commit comments