[pypy-commit] pypy default: Update comment.

arigo noreply at buildbot.pypy.org
Mon Sep 12 18:22:50 CEST 2011


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r47233:7c5f268c9c8d
Date: 2011-09-12 18:22 +0200
http://bitbucket.org/pypy/pypy/changeset/7c5f268c9c8d/

Log:	Update comment.

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
@@ -44,7 +44,7 @@
     if w_iterable is not None:
         # unfortunately this is duplicating space.unpackiterable to avoid
         # assigning a new RPython list to 'wrappeditems', which defeats the
-        # W_FastSeqIterObject optimization.
+        # W_FastListIterObject optimization.
         if isinstance(w_iterable, W_ListObject):
             items_w.extend(w_iterable.wrappeditems)
         elif isinstance(w_iterable, W_TupleObject):


More information about the pypy-commit mailing list