[pypy-commit] pypy list-strategies: this is not working on compiled pypy with list-strategies

l.diekmann noreply at buildbot.pypy.org
Fri Sep 23 13:14:34 CEST 2011


Author: Lukas Diekmann <lukas.diekmann at uni-duesseldorf.de>
Branch: list-strategies
Changeset: r47512:9370ee077126
Date: 2011-07-06 17:38 +0200
http://bitbucket.org/pypy/pypy/changeset/9370ee077126/

Log:	this is not working on compiled pypy with list-strategies

diff --git a/pypy/objspace/std/test/test_listobject.py b/pypy/objspace/std/test/test_listobject.py
--- a/pypy/objspace/std/test/test_listobject.py
+++ b/pypy/objspace/std/test/test_listobject.py
@@ -525,6 +525,9 @@
         l.extend(['a', 'b'])
         assert l[::-1] == ['b', 'a', '']
 
+        l = [1,2,3,4,5]
+        assert l[1:0:None] == []
+
     def test_delall(self):
         l = l0 = [1,2,3]
         del l[:]


More information about the pypy-commit mailing list