From: Andrew M. Kuchling Date: Tue, 25 Jul 2000 00:51:31 +0000 (+0000) Subject: Made an error message slightly more useful if select() returns something goofy X-Git-Tag: v2.0b1~724 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c1b4624447636c09429f2c34535d1011ac9ba53b;p=thirdparty%2FPython%2Fcpython.git Made an error message slightly more useful if select() returns something goofy --- diff --git a/Lib/test/test_select.py b/Lib/test/test_select.py index 1a7bf4b86230..b198cf16f6da 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()