MCPcopy Index your code
hub / github.com/python/mypy / json_loads

Function json_loads

mypy/util.py:967–970  ·  view source on GitHub ↗
(data: bytes)

Source from the content-addressed store, hash-verified

965
966
967def json_loads(data: bytes) -> Any:
968 if orjson is not None:
969 return orjson.loads(data)
970 return json.loads(data)
971
972
973_AVAILABLE_THREADS: int | None = None

Callers 7

read_quickstart_fileFunction · 0.90
_load_json_fileFunction · 0.90
find_cache_metaFunction · 0.90
apply_diffFunction · 0.90
loadFunction · 0.90

Calls

no outgoing calls

Tested by 1

Used in the wild real call sites across dependent graphs

searching dependent graphs…