PY-9365 Make function from method: leads to unresolved attribute reference for method usages in class

This commit is contained in:
Ekaterina Tuzova
2013-10-10 18:25:33 +04:00
parent 2527f7303b
commit 33a3ecf730
11 changed files with 44 additions and 33 deletions
@@ -1,9 +1,11 @@
__author__ = 'ktisha'
def f():
test = 1
class Child(Base):
def __init__(self):
super(Child, self).__init__()
def f():
test = 1