summaryrefslogtreecommitdiffstats
path: root/Lib/dos-8x3/test_sel.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2000-09-01 19:25:51 (GMT)
committerGuido van Rossum <guido@python.org>2000-09-01 19:25:51 (GMT)
commit8d691c842289cf4453f282637765f07113a7cc17 (patch)
tree3a7819d53d7578cf728d3bcfecba7daebb6981db /Lib/dos-8x3/test_sel.py
parent29201d490511b2af863e07fdf5cb247fc9117c2f (diff)
downloadcpython-8d691c842289cf4453f282637765f07113a7cc17.zip
cpython-8d691c842289cf4453f282637765f07113a7cc17.tar.gz
cpython-8d691c842289cf4453f282637765f07113a7cc17.tar.bz2
The usual
Diffstat (limited to 'Lib/dos-8x3/test_sel.py')
-rwxr-xr-xLib/dos-8x3/test_sel.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/dos-8x3/test_sel.py b/Lib/dos-8x3/test_sel.py
index 60de360..b198cf1 100755
--- a/Lib/dos-8x3/test_sel.py
+++ b/Lib/dos-8x3/test_sel.py
@@ -45,7 +45,6 @@ def test():
if verbose:
print 'timeout =', tout
rfd, wfd, xfd = select.select([p], [], [], tout)
-## print rfd, wfd, xfd
if (rfd, wfd, xfd) == ([], [], []):
continue
if (rfd, wfd, xfd) == ([p], [], []):
@@ -57,7 +56,7 @@ def test():
print 'EOF'
break
continue
- print 'Heh?'
+ print 'Unexpected return values from select():', rfd, wfd, xfd
p.close()
test()