(self)
| 1516 | assert_(np.all(b == np.array([0, 1, 2, 3, 4, 5, 6, 7, 8, 9]))) |
| 1517 | |
| 1518 | def test_fromstring_crash(self): |
| 1519 | # Ticket #1345: the following should not cause a crash |
| 1520 | with assert_warns(DeprecationWarning): |
| 1521 | np.fromstring(b'aa, aa, 1.0', sep=',') |
| 1522 | |
| 1523 | def test_ticket_1539(self): |
| 1524 | dtypes = [x for x in np.sctypeDict.values() |
nothing calls this directly
no test coverage detected