[pypy-commit] pypy list-strategies: remove dead/commented out code

fijal noreply at buildbot.pypy.org
Tue Nov 22 15:49:13 CET 2011


Author: Maciej Fijalkowski <fijall at gmail.com>
Branch: list-strategies
Changeset: r49660:4566b449070c
Date: 2011-11-22 16:48 +0200
http://bitbucket.org/pypy/pypy/changeset/4566b449070c/

Log:	remove dead/commented out code

diff --git a/pypy/module/__builtin__/functional.py b/pypy/module/__builtin__/functional.py
--- a/pypy/module/__builtin__/functional.py
+++ b/pypy/module/__builtin__/functional.py
@@ -99,15 +99,13 @@
     assert space.config.objspace.std.withrangelist
     from pypy.objspace.std.listobject import make_range_list
     return make_range_list(space, start, step, length)
-    #from pypy.objspace.std.rangeobject import W_RangeListObject
-    #return W_RangeListObject(start, step, length)
 
 bigint_one = rbigint.fromint(1)
 
 def range_with_longs(space, w_start, w_stop, w_step):
 
     start = lo = space.bigint_w(w_start)
-    stop  = hi = space.bigint_w(w_stop)
+    hi = space.bigint_w(w_stop)
     step  = st = space.bigint_w(w_step)
 
     if not step.tobool():


More information about the pypy-commit mailing list