True when __array_ufunc__ is set to None.
(obj)
| 7 | |
| 8 | |
| 9 | def _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 | |
| 17 | def _binary_method(ufunc, name): |
no outgoing calls
no test coverage detected
searching dependent graphs…