fixed PY-9654 Make function from method/Make method static: correctly update class calls with first instance argument

This commit is contained in:
Ekaterina Tuzova
2013-05-29 16:00:26 +04:00
parent 4d3a63d50b
commit b2a2abbce5
12 changed files with 139 additions and 21 deletions

View File

@@ -0,0 +1,6 @@
class A:
def m<caret>(self):
print 1
b = A()
a = b.m()