Merge pull request #351 from tharvik/fix_bytearray

add bytearray.insert
This commit is contained in:
Matthias Kramm
2016-07-11 06:07:02 -07:00
committed by GitHub

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: ...