[Python-checkins] r81141 - python/trunk/Lib/test/regrtest.py

florent.xicluna python-checkins at python.org
Thu May 13 20:16:06 CEST 2010


Author: florent.xicluna
Date: Thu May 13 20:16:06 2010
New Revision: 81141

Log:
Revert the additional OS X information (r81140).  Keep the endianness information.


Modified:
   python/trunk/Lib/test/regrtest.py

Modified: python/trunk/Lib/test/regrtest.py
==============================================================================
--- python/trunk/Lib/test/regrtest.py	(original)
+++ python/trunk/Lib/test/regrtest.py	Thu May 13 20:16:06 2010
@@ -427,11 +427,7 @@
         print "==", platform.python_implementation(), \
                     " ".join(sys.version.split())
         print "==  ", platform.platform(aliased=True), \
-                      "%s-endian" % sys.byteorder,
-        if sys.platform == 'darwin':
-            print platform.mac_ver()
-        else:
-            print
+                      "%s-endian" % sys.byteorder
         print "==  ", os.getcwd()
 
     alltests = findtests(testdir, stdtests, nottests)


More information about the Python-checkins mailing list