From 00e4027b776b0ab26b7daffb37c8e6859c9eccaa Mon Sep 17 00:00:00 2001 From: George King Date: Wed, 7 Dec 2016 16:19:27 -0500 Subject: [PATCH] Add `idx` parameter to `JSONDecoder.raw_decode`. (#742) --- stdlib/3/json.pyi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stdlib/3/json.pyi b/stdlib/3/json.pyi index 6accc80ff..63592c338 100644 --- a/stdlib/3/json.pyi +++ b/stdlib/3/json.pyi @@ -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]: ...