From: Florent Xicluna Date: Thu, 13 May 2010 17:05:29 +0000 (+0000) Subject: Add sensible information about the OS X platform to diagnose issue #8423: X-Git-Tag: v2.7rc1~161 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b7d413f9bc1321ab3fa280eccf2d4f540d69112e;p=python Add sensible information about the OS X platform to diagnose issue #8423: test_pep277 fails on "x86 Tiger" buildbot but not on "PPC Tiger". --- diff --git a/Lib/test/regrtest.py b/Lib/test/regrtest.py index a4139d313d..6e024e96ac 100755 --- a/Lib/test/regrtest.py +++ b/Lib/test/regrtest.py @@ -426,7 +426,12 @@ def main(tests=None, testdir=None, verbose=0, quiet=False, # Print basic platform information print "==", platform.python_implementation(), \ " ".join(sys.version.split()) - print "== ", platform.platform(aliased=True) + print "== ", platform.platform(aliased=True), \ + "%s-endian" % sys.byteorder, + if sys.platform == 'darwin': + print platform.mac_ver() + else: + print print "== ", os.getcwd() alltests = findtests(testdir, stdtests, nottests)