Author: Amaury Forgeot d'Arc <[email protected]>
Branch: py3k
Changeset: r59116:84aba85c0ac7
Date: 2012-11-28 23:57 +0100
http://bitbucket.org/pypy/pypy/changeset/84aba85c0ac7/
Log: Translation fix
diff --git a/pypy/objspace/std/objspace.py b/pypy/objspace/std/objspace.py
--- a/pypy/objspace/std/objspace.py
+++ b/pypy/objspace/std/objspace.py
@@ -562,7 +562,7 @@
# fast path: XXX this is duplicating most of the logic
# from the default __getattribute__ and the getattr() method...
- name = get_attribute_name(space, w_obj, w_name)
+ name = get_attribute_name(self, w_obj, w_name)
w_descr = w_type.lookup(name)
e = None
if w_descr is not None:
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit