[NumPy-Tickets] [NumPy] #2052: numpy record dtypes segfault
NumPy Trac
numpy-tickets@scipy....
Mon Feb 13 03:48:29 CST 2012
#2052: numpy record dtypes segfault
--------------------+-------------------------------------------------------
Reporter: fijal | Owner: somebody
Type: defect | Status: new
Priority: normal | Milestone: Unscheduled
Component: Other | Version: 1.6.1
Keywords: |
--------------------+-------------------------------------------------------
An example session:
>>> from numpy import *
>>> a = zeros(2, dtype=[('x', int), ('y', float)])
>>> a['x']
array([0, 0])
>>> a[0]
(0, 0.0)
>>> del a[0]['x']
Segmentation fault
--
Ticket URL: <http://projects.scipy.org/numpy/ticket/2052>
NumPy <http://projects.scipy.org/numpy>
My example project
More information about the NumPy-Tickets
mailing list