From: Antoine Pitrou Date: Tue, 26 Jul 2011 12:45:22 +0000 (+0200) Subject: Add debug output for failing buildbot X-Git-Tag: v3.3.0a1~1841 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=83d21930ab45af7a205a888c897636e2cf053da4;p=thirdparty%2FPython%2Fcpython.git Add debug output for failing buildbot --- diff --git a/Lib/test/test_locale.py b/Lib/test/test_locale.py index 5155923c91a3..413c54758341 100644 --- a/Lib/test/test_locale.py +++ b/Lib/test/test_locale.py @@ -401,6 +401,8 @@ class TestMiscellaneous(unittest.TestCase): # Unsupported locale on this system self.skipTest('test needs Turkish locale') loc = locale.getlocale() + if verbose: + print('got locale %a' % (loc,)) locale.setlocale(locale.LC_CTYPE, loc) self.assertEqual(loc, locale.getlocale())