Add missing 'self'

This commit is contained in:
Matthias Kramm
2015-09-15 14:51:06 -07:00
parent dd042b3255
commit ac17e9afcf
9 changed files with 96 additions and 96 deletions

View File

@@ -9,11 +9,11 @@ def bench(a, b: str, *args, **kwargs) -> float: ...
class spamdict(object):
def getstate() -> int: ...
def setstate(a: int) -> None: ...
def getstate(self) -> int: ...
def setstate(self, a: int) -> None: ...
class spamlist(object):
def classmeth(*args, **kwargs) -> tuple: ...
def getstate() -> int: ...
def setstate(a: int) -> None: ...
def staticmeth(*args, **kwargs) -> tuple: ...
def classmeth(self, *args, **kwargs) -> tuple: ...
def getstate(self) -> int: ...
def setstate(self, a: int) -> None: ...
def staticmeth(self, *args, **kwargs) -> tuple: ...