[pypy-commit] pypy virtual-arguments: backout 1512d5e642b9

fijal noreply at buildbot.pypy.org
Fri Jul 20 10:48:21 CEST 2012


Author: Maciej Fijalkowski <fijall at gmail.com>
Branch: virtual-arguments
Changeset: r56274:b8c17cade0e9
Date: 2012-07-20 10:44 +0200
http://bitbucket.org/pypy/pypy/changeset/b8c17cade0e9/

Log:	backout 1512d5e642b9

diff --git a/pypy/interpreter/baseobjspace.py b/pypy/interpreter/baseobjspace.py
--- a/pypy/interpreter/baseobjspace.py
+++ b/pypy/interpreter/baseobjspace.py
@@ -873,7 +873,6 @@
     @jit.unroll_safe
     def _unpackiterable_known_length_jitlook(self, w_iterator,
                                              expected_length):
-        assert expected_length >= 0
         items = [None] * expected_length
         idx = 0
         while True:


More information about the pypy-commit mailing list