Revert the additional OS X information (r81140).  Keep the endianness information.
diff --git a/Lib/test/regrtest.py b/Lib/test/regrtest.py
index 6e024e9..8a89a67 100755
--- a/Lib/test/regrtest.py
+++ b/Lib/test/regrtest.py
@@ -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)