(t)
| 70 | def test_generic_rank1(self): |
| 71 | """Test rank 1 array for all dtypes.""" |
| 72 | def foo(t): |
| 73 | a = np.empty(2, t) |
| 74 | a.fill(1) |
| 75 | b = a.copy() |
| 76 | c = a.copy() |
| 77 | c.fill(0) |
| 78 | self._test_equal(a, b) |
| 79 | self._test_not_equal(c, b) |
| 80 | |
| 81 | # Test numeric types and object |
| 82 | for t in '?bhilqpBHILQPfdgFDG': |
nothing calls this directly
no test coverage detected