Make test_socket work.
Don't exclude test_socket from the tests to run.
diff --git a/runtests.sh b/runtests.sh
index 5a03b0a..c90460e 100755
--- a/runtests.sh
+++ b/runtests.sh
@@ -27,7 +27,7 @@
 # Compute the list of tests to run.
 case $# in
 0) 
-    TESTS=`(cd Lib/test; ls test_*.py | sed 's/\.py//' | grep -v  test_socket)`
+    TESTS=`(cd Lib/test; ls test_*.py | sed 's/\.py//')`
     ;;
 *)
     TESTS="$@"