[NumPy-Tickets] [NumPy] #1757: Segfault in pandas.
NumPy Trac
numpy-tickets@scipy....
Sun Mar 6 20:29:15 CST 2011
#1757: Segfault in pandas.
------------------------------+---------------------------------------------
Reporter: charris | Owner: somebody
Type: defect | Status: new
Priority: high | Milestone: 1.6.0
Component: Other | Version: devel
Keywords: segfault, pandas |
------------------------------+---------------------------------------------
Comment(by charris):
For reference, in 1.5
{{{
>>> import numpy as np
>>> import pandas.util.testing as common
>>> x = common.makeTimeDataFrame()
>>> a = np.array([x])
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ValueError: setting an array element with a sequence.
>>> a = np.array([x,x])
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ValueError: setting an array element with a sequence.
>>> a = np.array([x,x],object)
>>>
}}}
The last two segfault in 1.6
--
Ticket URL: <http://projects.scipy.org/numpy/ticket/1757#comment:3>
NumPy <http://projects.scipy.org/numpy>
My example project
More information about the NumPy-Tickets
mailing list