[pypy-commit] pypy py3k: Translation fix

amauryfa noreply at buildbot.pypy.org
Thu Nov 29 00:08:00 CET 2012


Author: Amaury Forgeot d'Arc <amauryfa at gmail.com>
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:


More information about the pypy-commit mailing list