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

Method __init__

numpy/ma/core.py:921–926  ·  view source on GitHub ↗
(self, mufunc, fill=0, domain=None)

Source from the content-addressed store, hash-verified

919 """
920
921 def __init__(self, mufunc, fill=0, domain=None):
922 super().__init__(mufunc)
923 self.fill = fill
924 self.domain = domain
925 ufunc_domain[mufunc] = domain
926 ufunc_fills[mufunc] = fill
927
928 def __call__(self, a, *args, **kwargs):
929 """

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected