(x, y)
| 2119 | |
| 2120 | |
| 2121 | def assert_hypot_isinf(x, y): |
| 2122 | with np.errstate(invalid='ignore'): |
| 2123 | assert_(np.isinf(ncu.hypot(x, y)), |
| 2124 | "hypot(%s, %s) is %s, not inf" % (x, y, ncu.hypot(x, y))) |
| 2125 | |
| 2126 | |
| 2127 | class TestHypotSpecialValues: |
no test coverage detected