(module, name)
| 585 | } |
| 586 | |
| 587 | def mapping(module, name): |
| 588 | if (module, name) in NAME_MAPPING: |
| 589 | module, name = NAME_MAPPING[(module, name)] |
| 590 | elif module in IMPORT_MAPPING: |
| 591 | module = IMPORT_MAPPING[module] |
| 592 | return module, name |
| 593 | |
| 594 | def reverse_mapping(module, name): |
| 595 | if (module, name) in REVERSE_NAME_MAPPING: |
no outgoing calls
no test coverage detected
searching dependent graphs…