[Python-checkins] r85522 - python/branches/py3k/Lib/test/test_socket.py

antoine.pitrou python-checkins at python.org
Fri Oct 15 15:35:51 CEST 2010


Author: antoine.pitrou
Date: Fri Oct 15 15:35:51 2010
New Revision: 85522

Log:
Temporary debug printout for buildbots



Modified:
   python/branches/py3k/Lib/test/test_socket.py

Modified: python/branches/py3k/Lib/test/test_socket.py
==============================================================================
--- python/branches/py3k/Lib/test/test_socket.py	(original)
+++ python/branches/py3k/Lib/test/test_socket.py	Fri Oct 15 15:35:51 2010
@@ -1905,6 +1905,11 @@
         tests.append(TIPCTest)
         tests.append(TIPCThreadableTest)
 
+    if support.verbose:
+        import pprint
+        print("== Errno map:")
+        pprint.pprint(errno.errorcode)
+
     thread_info = support.threading_setup()
     support.run_unittest(*tests)
     support.threading_cleanup(*thread_info)


More information about the Python-checkins mailing list