summaryrefslogtreecommitdiffstats
path: root/QMTest/TestCmd.py
diff options
context:
space:
mode:
authorGreg Noel <GregNoel@tigris.org>2010-03-29 05:50:15 (GMT)
committerGreg Noel <GregNoel@tigris.org>2010-03-29 05:50:15 (GMT)
commit7adebb06bb6055345cc584377159d8052ea39e1b (patch)
treed0ca5f58b87d964927a1db7f4fe8a602f8405d23 /QMTest/TestCmd.py
parent59ed0a109bf5add2efcef459080837b11066c6fb (diff)
downloadSCons-7adebb06bb6055345cc584377159d8052ea39e1b.zip
SCons-7adebb06bb6055345cc584377159d8052ea39e1b.tar.gz
SCons-7adebb06bb6055345cc584377159d8052ea39e1b.tar.bz2
http://scons.tigris.org/issues/show_bug.cgi?id=2345
Accumulated small fixers: renames, next, zip, and intern. Files that were modified or added while developing on branches/pending didn't have the fixers previously applied. This patchset picks up those.
Diffstat (limited to 'QMTest/TestCmd.py')
-rw-r--r--QMTest/TestCmd.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/QMTest/TestCmd.py b/QMTest/TestCmd.py
index 7c8e1a5..a7f97d7 100644
--- a/QMTest/TestCmd.py
+++ b/QMTest/TestCmd.py
@@ -302,15 +302,6 @@ except ImportError:
else:
atexit.register(_clean)
-try:
- zip
-except NameError:
- def zip(*lists):
- result = []
- for i in xrange(min(list(map(len, lists)))):
- result.append(tuple([l[i] for l in lists]))
- return result
-
class Collector:
def __init__(self, top):
self.entries = [top]