MCPcopy Create free account
hub / github.com/Kitware/CMake / __read_json_file

Function __read_json_file

Source/cmConvertMSBuildXMLToJSON.py:437–440  ·  view source on GitHub ↗

Reads a JSON file at the path.

(path)

Source from the content-addressed store, hash-verified

435###########################################################################################
436# private JSON file functions
437def __read_json_file(path):
438 """Reads a JSON file at the path."""
439 with open(path, 'r') as f:
440 return json.load(f)
441
442
443def __write_json_file(path, values):

Callers 1

read_msbuild_jsonFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…