(self)
| 391 | class TestNonZero(_DeprecationTestCase): |
| 392 | # 2019-05-26, 1.17.0 |
| 393 | def test_zerod(self): |
| 394 | self.assert_deprecated(lambda: np.nonzero(np.array(0))) |
| 395 | self.assert_deprecated(lambda: np.nonzero(np.array(1))) |
| 396 | |
| 397 | |
| 398 | class TestToString(_DeprecationTestCase): |
nothing calls this directly
no test coverage detected