MCPcopy Index your code
hub / github.com/numpy/numpy / extend_all

Function extend_all

numpy/_core/numeric.py:2685–2690  ·  view source on GitHub ↗
(module)

Source from the content-addressed store, hash-verified

2683
2684
2685def 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
2693from . import _asarray, _ufunc_config, arrayprint, fromnumeric

Callers 1

numeric.pyFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…