(data, file_name, map_binary_to_string=False, source_set=None)
| 191 | |
| 192 | |
| 193 | def loads(data, file_name, map_binary_to_string=False, source_set=None): |
| 194 | if file_name.endswith(".pdl"): |
| 195 | return parse(data, file_name, map_binary_to_string, source_set) |
| 196 | return json.loads(data) |
nothing calls this directly
no test coverage detected
searching dependent graphs…