Calling an InstanceElement of an Instance of CompiledObject doesn't raise an error anymore. Yes, it's really that complicated.

This commit is contained in:
Dave Halter
2014-07-30 19:49:41 +02:00
parent 0851e7667e
commit 870abe73d4
3 changed files with 21 additions and 4 deletions

View File

@@ -191,6 +191,18 @@ f()
#? int()
g()
class X():
@str
def x(self):
pass
def y(self):
#? str()
self.x
#?
self.x()
# -----------------
# method decorators
# -----------------