Author: Alex Gaynor <alex.gay...@gmail.com>
Branch: dynamic-specialized-tuple
Changeset: r54750:2a5a921a1519
Date: 2012-04-25 11:26 -0400
http://bitbucket.org/pypy/pypy/changeset/2a5a921a1519/

Log:    typo

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
@@ -35,7 +35,7 @@
         self.tuplestorage = tuplestorage
 
     @jit.look_inside_iff(lambda self, space:
-        jit.isvirtual(self) or (jit.isconstant(self.length()) and self.length 
< UNROLL_TUPLE_LIMIT)
+        jit.isvirtual(self) or (jit.isconstant(self.length()) and 
self.length() < UNROLL_TUPLE_LIMIT)
     )
     def tolist(self, space):
         items_w = [None] * self.length()
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to