From: Antoine Pitrou Date: Fri, 15 Oct 2010 13:35:51 +0000 (+0000) Subject: Temporary debug printout for buildbots X-Git-Tag: v3.2a4~568 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f64317e05ff08f8358ada96a62400c5c1e3dd80c;p=thirdparty%2FPython%2Fcpython.git Temporary debug printout for buildbots --- diff --git a/Lib/test/test_socket.py b/Lib/test/test_socket.py index aadfdfaf206a..1d7a97c94d9b 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)