Ticket #1733
(self)
| 1835 | a[()].__class__ # will segfault if object was deleted |
| 1836 | |
| 1837 | def test_zerosize_accumulate(self): |
| 1838 | "Ticket #1733" |
| 1839 | x = np.array([[42, 0]], dtype=np.uint32) |
| 1840 | assert_equal(np.add.accumulate(x[:-1, 0]), []) |
| 1841 | |
| 1842 | def test_objectarray_setfield(self): |
| 1843 | # Setfield should not overwrite Object fields with non-Object data |
nothing calls this directly
no test coverage detected