summaryrefslogtreecommitdiffstats
path: root/QMTest/TestCmd.py
diff options
context:
space:
mode:
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]