(module, name)
| 655 | } |
| 656 | |
| 657 | def mapping(module, name): |
| 658 | if (module, name) in NAME_MAPPING: |
| 659 | module, name = NAME_MAPPING[(module, name)] |
| 660 | elif module in IMPORT_MAPPING: |
| 661 | module = IMPORT_MAPPING[module] |
| 662 | return module, name |
| 663 | |
| 664 | def reverse_mapping(module, name): |
| 665 | if (module, name) in REVERSE_NAME_MAPPING: |
no outgoing calls
no test coverage detected