Add missing BytesIO.next().

This commit is contained in:
Guido van Rossum
2016-09-12 11:25:00 -07:00
parent f728e413b8
commit 0907e2cdda

View File

@@ -41,6 +41,7 @@ class BytesIO(BinaryIO):
def read1(self) -> str: ...
def __iter__(self) -> Iterator[str]: ...
def next(self) -> str: ...
def __enter__(self) -> 'BytesIO': ...
def __exit__(self, type, value, traceback) -> bool: ...