diff --git a/Lib/test/test_socket.py b/Lib/test/test_socket.py index c61a2c8221b..b602c91d65f 100644 --- a/Lib/test/test_socket.py +++ b/Lib/test/test_socket.py @@ -20,7 +20,8 @@ def missing_ok(str): except AttributeError: pass -print socket.error +try: raise socket.error +except socket.error: print "socket.error" socket.AF_INET