(self)
| 2002 | assert_equal(zs.view((dt, 1)).shape, (0,)) |
| 2003 | |
| 2004 | def test_dumps(self): |
| 2005 | zs = self._zeros(10, int) |
| 2006 | assert_equal(zs, pickle.loads(zs.dumps())) |
| 2007 | |
| 2008 | def test_pickle(self): |
| 2009 | for proto in range(2, pickle.HIGHEST_PROTOCOL + 1): |
nothing calls this directly
no test coverage detected