MCPcopy Index your code
hub / github.com/matplotlib/matplotlib / json_load

Function json_load

lib/matplotlib/font_manager.py:1183–1192  ·  view source on GitHub ↗

Load a `FontManager` from the JSON file named *filename*. See Also -------- json_dump

(filename)

Source from the content-addressed store, hash-verified

1181
1182
1183def json_load(filename):
1184 """
1185 Load a `FontManager` from the JSON file named *filename*.
1186
1187 See Also
1188 --------
1189 json_dump
1190 """
1191 with open(filename) as fh:
1192 return json.load(fh, object_hook=_json_decode)
1193
1194
1195class FontManager:

Callers 2

test_json_serializationFunction · 0.90
_load_fontmanagerFunction · 0.85

Calls

no outgoing calls

Tested by 1

test_json_serializationFunction · 0.72

Used in the wild real call sites across dependent graphs

searching dependent graphs…