diff options
author | Guido van Rossum <guido@python.org> | 2000-11-13 17:11:45 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2000-11-13 17:11:45 (GMT) |
commit | 56baca328f7c018c4ae776dd87f44a145f502773 (patch) | |
tree | aa5418fee3c046353db47491d1746a523402fa2e /Lib/dos-8x3/test_ope.py | |
parent | f6fc875831d0cfbf4077b4d2e1800365a78f7c2e (diff) | |
download | cpython-56baca328f7c018c4ae776dd87f44a145f502773.zip cpython-56baca328f7c018c4ae776dd87f44a145f502773.tar.gz cpython-56baca328f7c018c4ae776dd87f44a145f502773.tar.bz2 |
Removing DOS 8x3 support
Diffstat (limited to 'Lib/dos-8x3/test_ope.py')
-rwxr-xr-x | Lib/dos-8x3/test_ope.py | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/Lib/dos-8x3/test_ope.py b/Lib/dos-8x3/test_ope.py deleted file mode 100755 index 723e57c..0000000 --- a/Lib/dos-8x3/test_ope.py +++ /dev/null @@ -1,22 +0,0 @@ -# Test to see if openpty works. (But don't worry if it isn't available.) - -import os -from test_support import verbose, TestFailed, TestSkipped - -try: - if verbose: - print "Calling os.openpty()" - master, slave = os.openpty() - if verbose: - print "(master, slave) = (%d, %d)"%(master, slave) -except AttributeError: - raise TestSkipped, "No openpty() available." - -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) - |