third_party.pylibs.pylint.src/test/input/func_w0202.py
root 4becf6f9e5 forget the past.
forget the past.
2006-04-26 10:48:09 +00:00

18 lines
310 B
Python

"""check static method with self or cls as first argument"""
__revision__ = None
class Abcd:
"""dummy"""
def method1(self):
"""hehe"""
method1 = staticmethod(method1)
def method2(cls):
"""hehe"""
method2 = staticmethod(method2)
def __init__(self):
pass