Author: Maciej Fijalkowski <[email protected]>
Branch: virtual-arguments
Changeset: r56282:8f8b6e6f4bb8
Date: 2012-07-20 10:46 +0200
http://bitbucket.org/pypy/pypy/changeset/8f8b6e6f4bb8/

Log:    backout 5f1c0d3ad87f

diff --git a/pypy/objspace/std/specialisedtupleobject.py 
b/pypy/objspace/std/specialisedtupleobject.py
--- a/pypy/objspace/std/specialisedtupleobject.py
+++ b/pypy/objspace/std/specialisedtupleobject.py
@@ -270,8 +270,6 @@
     if times == 1 and space.type(w_tuple) == space.w_tuple:
         return w_tuple
     items = w_tuple.tolist()
-    if times < 0:
-        times = 0
     return space.newtuple(items * times)
 
 def mul__SpecialisedTuple_ANY(space, w_tuple, w_times):
diff --git a/pypy/objspace/std/tupleobject.py b/pypy/objspace/std/tupleobject.py
--- a/pypy/objspace/std/tupleobject.py
+++ b/pypy/objspace/std/tupleobject.py
@@ -110,8 +110,6 @@
     if times == 1 and space.type(w_tuple) == space.w_tuple:
         return w_tuple
     items = w_tuple.wrappeditems
-    if times < 0:
-        times = 0
     return space.newtuple(items * times)
 
 def mul__Tuple_ANY(space, w_tuple, w_times):
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to