]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Made an error message slightly more useful if select() returns something goofy
authorAndrew M. Kuchling <amk@amk.ca>
Tue, 25 Jul 2000 00:51:31 +0000 (00:51 +0000)
committerAndrew M. Kuchling <amk@amk.ca>
Tue, 25 Jul 2000 00:51:31 +0000 (00:51 +0000)
Lib/test/test_select.py

index 1a7bf4b86230c4da97eb820a753e2f20de7bb411..b198cf16f6da5a7a71a7ab734a77ba2851dff2c0 100644 (file)
@@ -56,7 +56,7 @@ def test():
                                         print 'EOF'
                                 break
                         continue
-                print 'Heh?'
+                print 'Unexpected return values from select():', rfd, wfd, xfd
         p.close()
 
 test()