(module)
| 2683 | |
| 2684 | |
| 2685 | def extend_all(module): |
| 2686 | existing = set(__all__) |
| 2687 | mall = module.__all__ |
| 2688 | for a in mall: |
| 2689 | if a not in existing: |
| 2690 | __all__.append(a) |
| 2691 | |
| 2692 | |
| 2693 | from . import _asarray, _ufunc_config, arrayprint, fromnumeric |
no outgoing calls
no test coverage detected
searching dependent graphs…