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

@@ -22,8 +22,8 @@ def unpack_from(*args, **kwargs) -> tuple:
class Struct(object):
def __sizeof__() -> long: ...
def pack(*args, **kwargs) -> str: ...
def pack_into(*args, **kwargs) -> None: ...
def unpack(a) -> tuple: ...
def unpack_from(*args, **kwargs) -> tuple: ...
def __sizeof__(self) -> long: ...
def pack(self, *args, **kwargs) -> str: ...
def pack_into(self, *args, **kwargs) -> None: ...
def unpack(self, a) -> tuple: ...
def unpack_from(self, *args, **kwargs) -> tuple: ...