Get staticmethod working

This commit is contained in:
Dave Halter
2020-02-23 01:36:45 +01:00
parent a7110a4e08
commit 2061919b64
2 changed files with 27 additions and 3 deletions

View File

@@ -77,3 +77,18 @@ class X:
def f(x):
#? 16 text {'new_name': 'ab'}
return x.ab()
# -------------------------------------------------- in-staticmethod-1
class X(int):
@staticmethod
def f(x):
#? 16 text {'new_name': 'ab'}
return 25 | 3
# ++++++++++++++++++++++++++++++++++++++++++++++++++
def ab():
return 25 | 3
class X(int):
@staticmethod
def f(x):
#? 16 text {'new_name': 'ab'}
return ab()