Author: Armin Rigo <[email protected]>
Branch: length-hint
Changeset: r55542:00a0546533c0
Date: 2012-06-10 15:50 +0200
http://bitbucket.org/pypy/pypy/changeset/00a0546533c0/

Log:    Add a comment.

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
@@ -16,6 +16,7 @@
             raise
 
     try:
+        XXX  # should not use call_method here, which is based on getattr
         w_hint = space.call_method(w_obj, '__length_hint__')
     except OperationError, e:
         if not (e.match(space, space.w_TypeError) or
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to