Author: Richard Plangger <[email protected]>
Branch: py3.5-async-translate
Changeset: r86106:6f4bb70dde25
Date: 2016-08-09 16:22 +0200
http://bitbucket.org/pypy/pypy/changeset/6f4bb70dde25/

Log:    iterkeys translation issue resolved

diff --git a/pypy/interpreter/pyopcode.py b/pypy/interpreter/pyopcode.py
--- a/pypy/interpreter/pyopcode.py
+++ b/pypy/interpreter/pyopcode.py
@@ -1407,7 +1407,7 @@
             if not space.ismapping_w(w_item):
                 raise oefmt(space.w_TypeError,
                         "'%T' object is not a mapping", w_item)
-            iterator = w_item.iterkeys(w_item)
+            iterator = w_item.iterkeys()
             while True:
                 w_key = iterator.next_key()
                 if w_key is None:
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to