(self)
| 136 | h['x'] |
| 137 | |
| 138 | def test_round(self): |
| 139 | # Ticket #67 |
| 140 | x = np.array([1 + 2j]) |
| 141 | assert_almost_equal(x**(-1), [1 / (1 + 2j)]) |
| 142 | |
| 143 | def test_scalar_compare(self): |
| 144 | # Trac Ticket #72 |
nothing calls this directly
no test coverage detected