Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
2507
def
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
2515
from
.umath
import
*
Callers
1
numeric.py
File · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected