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

nick.coghlan python-checkins at python.org
Sat Oct 17 09:34:28 CEST 2009


Author: nick.coghlan
Date: Sat Oct 17 09:34:27 2009
New Revision: 75457

Log:
Formatting tweak so that before and after values are vertically aligned

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	Sat Oct 17 09:34:27 2009
@@ -744,8 +744,8 @@
                                                  name, self.testname))
                     if self.verbose > 1:
                         print >>sys.stderr, (
-                              "  Before: {}\n  After: {} ".format(
-                                                 original, current))
+                              "  Before: {}\n  After:  {} ".format(
+                                                  original, current))
             # XXX (ncoghlan): for most resources (e.g. sys.path) identity
             # matters at least as much as value. For others (e.g. cwd),
             # identity is irrelevant. Should we add a mechanism to check


More information about the Python-checkins mailing list