Fixed test for socket.error to work when it's a class exception.
diff --git a/Lib/test/test_socket.py b/Lib/test/test_socket.py
index c61a2c8..b602c91 100644
--- a/Lib/test/test_socket.py
+++ b/Lib/test/test_socket.py
@@ -20,7 +20,8 @@
     except AttributeError:
 	pass
 
-print socket.error
+try: raise socket.error
+except socket.error: print "socket.error"
 
 socket.AF_INET