MCPcopy Create free account
hub / github.com/numpy/numpy / extend_all

Function extend_all

numpy/core/numeric.py:2507–2512  ·  view source on GitHub ↗
(module)

Source from the content-addressed store, hash-verified

2505
2506
2507def extend_all(module):
2508 existing = set(__all__)
2509 mall = getattr(module, '__all__')
2510 for a in mall:
2511 if a not in existing:
2512 __all__.append(a)
2513
2514
2515from .umath import *

Callers 1

numeric.pyFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected