Add missing attributes to json/decoder.pyi JSONDecoder by b9788213 · Pull Request #15333 · python/typeshed
self.parse_object = JSONObject
self.parse_array = JSONArray
self.parse_string = scanstring
self.memo = {}
parse_object: Callable[..., Any]
parse_array: Callable[..., Any]
parse_string: Callable[..., Any]
memo: dict[Any, Any]
Added missing attributes to json/decoder.pyi JSONDecoder class.