Object that opts out of __array_ufunc__.
| 122 | def test_opt_out(self): |
| 123 | |
| 124 | class OptOut: |
| 125 | """Object that opts out of __array_ufunc__.""" |
| 126 | __array_ufunc__ = None |
| 127 | |
| 128 | def __add__(self, other): |
| 129 | return self |
| 130 | |
| 131 | def __radd__(self, other): |
| 132 | return self |
| 133 | |
| 134 | array_like = ArrayLike(1) |
| 135 | opt_out = OptOut() |