diff options
| author | Greg Noel <GregNoel@tigris.org> | 2010-04-15 19:21:08 (GMT) |
|---|---|---|
| committer | Greg Noel <GregNoel@tigris.org> | 2010-04-15 19:21:08 (GMT) |
| commit | c06950cad4c02ba6b759c1cbd65cfb52ab6868c3 (patch) | |
| tree | a3e265178b5b9c6d717d657133c3085747287751 /src/engine/SCons/Script | |
| parent | d58dff5877e75c3c7813045a075e50b23ecb1dfd (diff) | |
| download | SCons-c06950cad4c02ba6b759c1cbd65cfb52ab6868c3.zip SCons-c06950cad4c02ba6b759c1cbd65cfb52ab6868c3.tar.gz SCons-c06950cad4c02ba6b759c1cbd65cfb52ab6868c3.tar.bz2 | |
http://scons.tigris.org/issues/show_bug.cgi?id=2345
Fixes due to running the regression tests with the '-3' option to Python2.6,
which causes the run-time to look for potential compatibility problems with
Python 3.x. In some cases, all we can do is quiet the warning since we still
support Python versions that can't use the newer idiom. In other cases, we
fix the problem. This patch contains a mix of quieting and fixing, plus a
little lint.
Diffstat (limited to 'src/engine/SCons/Script')
| -rw-r--r-- | src/engine/SCons/Script/Main.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/engine/SCons/Script/Main.py b/src/engine/SCons/Script/Main.py index 96fc4b7..7a8f698 100644 --- a/src/engine/SCons/Script/Main.py +++ b/src/engine/SCons/Script/Main.py @@ -528,7 +528,7 @@ class MemStats(Stats): self.stats.append(SCons.Debug.memory()) def do_print(self): fmt = 'Memory %-32s %12d\n' - for label, stats in map(None, self.labels, self.stats): + for label, stats in zip(self.labels, self.stats): self.outfp.write(fmt % (label, stats)) memory_stats = MemStats() |
