summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNick Coghlan <ncoghlan@gmail.com>2009-10-17 07:34:27 (GMT)
committerNick Coghlan <ncoghlan@gmail.com>2009-10-17 07:34:27 (GMT)
commita3e97ad5bac9439f82c86a355775238655b5be87 (patch)
treee4f48f258688cb39ab733105db721678986057ea
parent2ee358eed358748496dcdc7ea3fe3f66e6e93531 (diff)
downloadcpython-a3e97ad5bac9439f82c86a355775238655b5be87.zip
cpython-a3e97ad5bac9439f82c86a355775238655b5be87.tar.gz
cpython-a3e97ad5bac9439f82c86a355775238655b5be87.tar.bz2
Formatting tweak so that before and after values are vertically aligned
-rwxr-xr-xLib/test/regrtest.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/regrtest.py b/Lib/test/regrtest.py
index 905e270..8b351d7 100755
--- a/Lib/test/regrtest.py
+++ b/Lib/test/regrtest.py
@@ -744,8 +744,8 @@ class saved_test_environment:
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