(self)
| 1791 | assert_equal(zs.view((dt, 1)).shape, (0,)) |
| 1792 | |
| 1793 | def test_dumps(self): |
| 1794 | zs = self._zeros(10, int) |
| 1795 | assert_equal(zs, pickle.loads(zs.dumps())) |
| 1796 | |
| 1797 | def test_pickle(self): |
| 1798 | for proto in range(2, pickle.HIGHEST_PROTOCOL + 1): |
nothing calls this directly
no test coverage detected