add bytearray.insert

This commit is contained in:
tharvik
2016-07-11 14:04:18 +02:00
parent 6248885ccc
commit 0e635efa6c

View File

@@ -383,6 +383,7 @@ class bytearray(MutableSequence[int]):
def expandtabs(self, tabsize: int = 8) -> bytearray: ...
def find(self, sub: str, start: int = 0, end: int = ...) -> int: ...
def index(self, sub: str, start: int = 0, end: int = ...) -> int: ...
def insert(self, index: int, object: int) -> None: ...
def isalnum(self) -> bool: ...
def isalpha(self) -> bool: ...
def isdigit(self) -> bool: ...