(self)
| 391 | assert_equal(np.array([[3, 4], [5, 6], None], dtype=object).shape, (3,)) |
| 392 | |
| 393 | def test_mem_around(self): |
| 394 | # Ticket #243 |
| 395 | x = np.zeros((1,)) |
| 396 | y = [0] |
| 397 | decimal = 6 |
| 398 | np.around(abs(x-y), decimal) <= 10.0**(-decimal) |
| 399 | |
| 400 | def test_character_array_strip(self): |
| 401 | # Ticket #246 |