summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2010-10-15 13:35:51 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2010-10-15 13:35:51 (GMT)
commitf64317e05ff08f8358ada96a62400c5c1e3dd80c (patch)
tree178d6ee7eb0af0d89525ffbdecc339486ab73d1e /Lib
parent8227045bbe2db3386b9c2ac4d0e73a02c9b4a95a (diff)
downloadcpython-f64317e05ff08f8358ada96a62400c5c1e3dd80c.zip
cpython-f64317e05ff08f8358ada96a62400c5c1e3dd80c.tar.gz
cpython-f64317e05ff08f8358ada96a62400c5c1e3dd80c.tar.bz2
Temporary debug printout for buildbots
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_socket.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/Lib/test/test_socket.py b/Lib/test/test_socket.py
index aadfdfa..1d7a97c 100644
--- a/Lib/test/test_socket.py
+++ b/Lib/test/test_socket.py
@@ -1905,6 +1905,11 @@ def test_main():
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)