From af6d7c35464bb75dcabc72094b4bd84154dde50d Mon Sep 17 00:00:00 2001 From: Greg Noel Date: Thu, 25 Mar 2010 04:14:28 +0000 Subject: Move 2.0 changes collected in branches/pending back to trunk for further development. Note that this set of changes is NOT backward-compatible; the trunk no longer works with Python 1.5.2, 2.0, or 2.1. --- timings/hundred/SConstruct | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'timings') 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() -- cgit v1.2.1