(dicts)
| 456 | return sorted(o, key=_key) |
| 457 | |
| 458 | def merge_api_dicts(dicts): |
| 459 | ret = {} |
| 460 | for d in dicts: |
| 461 | ret.update(d) |
| 462 | |
| 463 | return ret |
| 464 | |
| 465 | def check_api_dict(d): |
| 466 | """Check that an api dict is valid (does not use the same index twice) |
nothing calls this directly
no test coverage detected
searching dependent graphs…