mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-09 13:34:58 +08:00
Add idx parameter to JSONDecoder.raw_decode. (#742)
This commit is contained in:
committed by
Jukka Lehtosalo
parent
085c3f9915
commit
00e4027b77
@@ -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]: ...
|
||||
|
||||
Reference in New Issue
Block a user