summaryrefslogtreecommitdiff
path: root/timings
diff options
context:
space:
mode:
Diffstat (limited to 'timings')
-rw-r--r--timings/hundred/SConstruct4
1 files changed, 2 insertions, 2 deletions
diff --git a/timings/hundred/SConstruct b/timings/hundred/SConstruct
index 648c26ac..c824b887 100644
--- a/timings/hundred/SConstruct
+++ b/timings/hundred/SConstruct
@@ -27,8 +27,8 @@ def copy_files( env, target, source ):
for t, s in zip(target, source):
open(str(t), 'wb').write(open(str(s), 'rb').read())
-source_list = map(lambda t: 'source_%04d' % t, xrange(target_count))
-target_list = map(lambda t: 'target_%04d' % t, xrange(target_count))
+source_list = ['source_%04d' % t for t in xrange(target_count)]
+target_list = ['target_%04d' % t for t in xrange(target_count)]
env = Environment()