Author: Armin Rigo <ar...@tunes.org>
Branch: 
Changeset: r50316:8de6f245c959
Date: 2011-12-08 18:17 +0100
http://bitbucket.org/pypy/pypy/changeset/8de6f245c959/

Log:    Kill this __init__, which nowadays contains just a duplicate of
        setting to w_seq --- already done in the parent __init__.

diff --git a/pypy/objspace/std/iterobject.py b/pypy/objspace/std/iterobject.py
--- a/pypy/objspace/std/iterobject.py
+++ b/pypy/objspace/std/iterobject.py
@@ -33,9 +33,6 @@
     """Sequence iterator specialized for lists, accessing
     directly their RPython-level list of wrapped objects.
     """
-    def __init__(w_self, w_seq):
-        W_AbstractSeqIterObject.__init__(w_self, w_seq)
-        w_self.w_seq = w_seq
 
 class W_FastTupleIterObject(W_AbstractSeqIterObject):
    """Sequence iterator specialized for tuples, accessing
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to