diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2000-07-25 00:51:31 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2000-07-25 00:51:31 (GMT) |
commit | c1b4624447636c09429f2c34535d1011ac9ba53b (patch) | |
tree | b63fbcbf2616a32663cfae688a82a0bc39d161f2 /Lib | |
parent | 4463acbc32c5e754a9b4ef98e170d0bf21b7e44e (diff) | |
download | cpython-c1b4624447636c09429f2c34535d1011ac9ba53b.zip cpython-c1b4624447636c09429f2c34535d1011ac9ba53b.tar.gz cpython-c1b4624447636c09429f2c34535d1011ac9ba53b.tar.bz2 |
Made an error message slightly more useful if select() returns something goofy
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_select.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_select.py b/Lib/test/test_select.py index 1a7bf4b..b198cf1 100644 --- a/Lib/test/test_select.py +++ b/Lib/test/test_select.py @@ -56,7 +56,7 @@ def test(): print 'EOF' break continue - print 'Heh?' + print 'Unexpected return values from select():', rfd, wfd, xfd p.close() test() |