Author: Vincent Legoll <vincent.leg...@idgrilles.fr>
Branch: small-cleanups-misc
Changeset: r81356:a607974f68c6
Date: 2015-12-13 11:16 +0100
http://bitbucket.org/pypy/pypy/changeset/a607974f68c6/

Log:    Remove stale comment

        Ronan Lamy thinks this comment is obsolete (c.f. #2198) Remove it so
        that newcomers don't start to work on it.

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
@@ -521,7 +521,6 @@
 
     def descr_getitem(self, space, w_index):
         if isinstance(w_index, W_SliceObject):
-            # XXX consider to extend rlist's functionality?
             length = self.length()
             start, stop, step, slicelength = w_index.indices4(space, length)
             assert slicelength >= 0
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to