diff options
author | Greg Noel <GregNoel@tigris.org> | 2010-03-29 14:21:04 (GMT) |
---|---|---|
committer | Greg Noel <GregNoel@tigris.org> | 2010-03-29 14:21:04 (GMT) |
commit | 238a7bdb01614c5d6b81fdebadd069bc40a61d23 (patch) | |
tree | de2e680e944eb3c51fe1ba93714beba4605b18f4 /src/script | |
parent | 7adebb06bb6055345cc584377159d8052ea39e1b (diff) | |
download | SCons-238a7bdb01614c5d6b81fdebadd069bc40a61d23.zip SCons-238a7bdb01614c5d6b81fdebadd069bc40a61d23.tar.gz SCons-238a7bdb01614c5d6b81fdebadd069bc40a61d23.tar.bz2 |
http://scons.tigris.org/issues/show_bug.cgi?id=2345
The 'buffer' fixer simply replaces 'buffer( ... )' with 'memoryview( ... )',
which is incorrect for our cases, so these changes had to be done by hand and
a forward-compatibility class added.
The 'xrange' fixer was applied. Manual changes were minimal: a few case in
test strings and one use of 'range' as an identifer in the same scope as
where 'xrange' was converted to 'range'.
The "sets15" compat function, which provided backward compatibility for Python
versions prior to 2.2, was removed as no longer needed.
Diffstat (limited to 'src/script')
-rw-r--r-- | src/script/scons-time.py | 7 | ||||
-rw-r--r-- | src/script/sconsign.py | 2 |
2 files changed, 4 insertions, 5 deletions
diff --git a/src/script/scons-time.py b/src/script/scons-time.py index 04fa573..6c43e29 100644 --- a/src/script/scons-time.py +++ b/src/script/scons-time.py @@ -261,10 +261,9 @@ class Gnuplotter(Plotter): min_y = self.get_min_y() max_y = self.max_graph_value(self.get_max_y()) - range = max_y - min_y - incr = range / 10.0 + incr = (max_y - min_y) / 10.0 start = min_y + (max_y / 2.0) + (2.0 * incr) - position = [ start - (i * incr) for i in xrange(5) ] + position = [ start - (i * incr) for i in range(5) ] inx = 1 for line in self.lines: @@ -1268,7 +1267,7 @@ class SConsTimer: except ValueError: result.append(int(n)) else: - result.extend(range(int(x), int(y)+1)) + result.extend(list(range(int(x), int(y)+1))) return result def scons_path(self, dir): diff --git a/src/script/sconsign.py b/src/script/sconsign.py index ac619a5..e119a51 100644 --- a/src/script/sconsign.py +++ b/src/script/sconsign.py @@ -249,7 +249,7 @@ def map_bkids(entry, name): except AttributeError: return None result = [] - for i in xrange(len(bkids)): + for i in range(len(bkids)): result.append(nodeinfo_string(bkids[i], bkidsigs[i], " ")) if result == []: return None |