summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_openpty.py
diff options
context:
space:
mode:
authorThomas Wouters <thomas@python.org>2000-07-19 14:51:54 (GMT)
committerThomas Wouters <thomas@python.org>2000-07-19 14:51:54 (GMT)
commitbaf2663e44c2a143dac0d9477ea0d77286a6f1d0 (patch)
tree8ccdba5b55c9599ddcefce7ddfa4ed90e9b4e66d /Lib/test/test_openpty.py
parent616607a98719aa48e7f044dde828456d987a8385 (diff)
downloadcpython-baf2663e44c2a143dac0d9477ea0d77286a6f1d0.zip
cpython-baf2663e44c2a143dac0d9477ea0d77286a6f1d0.tar.gz
cpython-baf2663e44c2a143dac0d9477ea0d77286a6f1d0.tar.bz2
Enable extra testing now that os.isatty() is in. (Also tests os.isatty ;P)
Diffstat (limited to 'Lib/test/test_openpty.py')
-rw-r--r--Lib/test/test_openpty.py9
1 files changed, 4 insertions, 5 deletions
diff --git a/Lib/test/test_openpty.py b/Lib/test/test_openpty.py
index cd939c6..1202845 100644
--- a/Lib/test/test_openpty.py
+++ b/Lib/test/test_openpty.py
@@ -12,11 +12,10 @@ try:
except AttributeError:
raise ImportError, "No openpty() available."
-## # Please uncomment these if os.isatty() is added.
-## if not os.isatty(master):
-## raise TestFailed, "Master-end of pty is not a terminal."
-## if not os.isatty(slave):
-## raise TestFailed, "Slave-end of pty is not a terminal."
+if not os.isatty(master):
+ raise TestFailed, "Master-end of pty is not a terminal."
+if not os.isatty(slave):
+ raise TestFailed, "Slave-end of pty is not a terminal."
os.write(slave, 'Ping!')
print os.read(master, 1024)