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

Function _disables_array_ufunc

numpy/lib/mixins.py:9–14  ·  view source on GitHub ↗

True when __array_ufunc__ is set to None.

(obj)

Source from the content-addressed store, hash-verified

7
8
9def _disables_array_ufunc(obj):
10 """True when __array_ufunc__ is set to None."""
11 try:
12 return obj.__array_ufunc__ is None
13 except AttributeError:
14 return False
15
16
17def _binary_method(ufunc, name):

Callers 1

funcFunction · 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…