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

Method func

numpy/lib/_function_base_impl.py:2513–2517  ·  view source on GitHub ↗
(*vargs)

Source from the content-addressed store, hash-verified

2511 the_args = list(args)
2512
2513 def func(*vargs):
2514 for _n, _i in enumerate(inds):
2515 the_args[_i] = vargs[_n]
2516 kwargs.update(zip(names, vargs[len(inds):]))
2517 return self.pyfunc(*the_args, **kwargs)
2518
2519 vargs = [args[_i] for _i in inds]
2520 vargs.extend([kwargs[_n] for _n in names])

Callers 5

__init__Method · 0.45
_loose_callMethod · 0.45
_strict_callMethod · 0.45
time_rngMethod · 0.45
time_opMethod · 0.45

Calls 1

updateMethod · 0.80

Tested by

no test coverage detected