From: kayhayen@gmx.de Date: Thu, 17 Jan 2008 08:24:01 +0000 (-0800) Subject: typo X-Git-Tag: 0.9.6.14~29^2~74 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=da1d48ae4e4f134f5ee76eb45bdaaf4d5482e4ee;p=cython.git typo --- diff --git a/Cython/Compiler/ExprNodes.py b/Cython/Compiler/ExprNodes.py index 3ec90009..9ce1b7d8 100644 --- a/Cython/Compiler/ExprNodes.py +++ b/Cython/Compiler/ExprNodes.py @@ -1937,7 +1937,7 @@ class AttributeNode(ExprNode): code.putln( '%s = PyObject_GetAttrString(%s, "%s"); %s' % ( self.result_code, - self.objpy_result(), + self.obj.py_result(), self.attribute, code.error_goto_if_null(self.result_code, self.pos)))