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 1a7bf4b..b198cf1 100644
--- a/Lib/test/test_select.py
+++ b/Lib/test/test_select.py
@@ -56,7 +56,7 @@
                                         print 'EOF'
                                 break
                         continue
-                print 'Heh?'
+                print 'Unexpected return values from select():', rfd, wfd, xfd
         p.close()
 
 test()