Skip to content

Commit d27cb71

Browse files
committed
Add missing attributes to json/decoder.pyi JSONDecoder
1 parent 7f3ec00 commit d27cb71

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

stdlib/json/decoder.pyi

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@ class JSONDecoder:
1818
parse_constant: Callable[[str], Any]
1919
strict: bool
2020
object_pairs_hook: Callable[[list[tuple[str, Any]]], Any]
21+
parse_object: Callable
22+
parse_array: Callable
23+
parse_string: Callable
24+
memo: dict
2125
def __init__(
2226
self,
2327
*,

0 commit comments

Comments
 (0)