The usual
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 @@
                 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 @@
                                         print 'EOF'
                                 break
                         continue
-                print 'Heh?'
+                print 'Unexpected return values from select():', rfd, wfd, xfd
         p.close()
 
 test()