| 121 | |
| 122 | # class to use in testing object method loops |
| 123 | class foo: |
| 124 | def conjugate(self): |
| 125 | return np.bool_(1) |
| 126 | |
| 127 | def logical_xor(self, obj): |
| 128 | return np.bool_(1) |
| 129 | |
| 130 | def test_unary_PyUFunc_O_O(self): |
| 131 | x = np.ones(10, dtype=object) |
no outgoing calls