Commit fdafa536 authored by Stefan Behnel's avatar Stefan Behnel

cleanup

parent 3268f135
...@@ -3014,10 +3014,6 @@ class AttributeNode(ExprNode): ...@@ -3014,10 +3014,6 @@ class AttributeNode(ExprNode):
self.is_py_attr = 1 self.is_py_attr = 1
if not obj_type.is_pyobject: if not obj_type.is_pyobject:
self.obj = self.obj.coerce_to_pyobject(env) self.obj = self.obj.coerce_to_pyobject(env)
## if not obj_type.is_error:
## error(self.pos,
## "Object of type '%s' has no attribute '%s'" %
## (obj_type, self.attribute))
def nogil_check(self, env): def nogil_check(self, env):
if self.is_py_attr: if self.is_py_attr:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment