Add idx parameter to JSONDecoder.raw_decode. (#742)

This commit is contained in:
George King
2016-12-07 16:19:27 -05:00
committed by Jukka Lehtosalo
parent 085c3f9915
commit 00e4027b77

View File

@@ -85,4 +85,4 @@ class JSONDecoder(object):
strict: bool=True,
object_pairs_hook: Callable[[List[Tuple[str, Any]]], Any]=None) -> None: ...
def decode(self, s: str) -> Any: ...
def raw_decode(self, s: str) -> Tuple[Any, int]: ...
def raw_decode(self, s: str, idx: int=...) -> Tuple[Any, int]: ...