Author: Lukas Diekmann <[email protected]>
Branch: list-strategies
Changeset: r47448:d6a714086628
Date: 2011-03-01 18:36 +0100
http://bitbucket.org/pypy/pypy/changeset/d6a714086628/

Log:    Fixed delete_slice in EmptyListStrategy

diff --git a/pypy/objspace/std/listobject.py b/pypy/objspace/std/listobject.py
--- a/pypy/objspace/std/listobject.py
+++ b/pypy/objspace/std/listobject.py
@@ -205,7 +205,7 @@
         raise IndexError
 
     def deleteslice(self, w_list, start, step, slicelength):
-        raise IndexError
+        pass
 
     def pop(self, w_list, index):
         raise IndexError
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to