diff options
author | Travis Oliphant <oliphant@enthought.com> | 2006-11-17 20:40:54 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2006-11-17 20:40:54 +0000 |
commit | 005583cc50abc22d1784f51cc0f19b0e2367fb82 (patch) | |
tree | 256feb17c648d063414a843cde63c85e9055fcf9 /numpy/core/src/arrayobject.c | |
parent | ccd63380eb664f67c5fa9fcaad8860138c8c0607 (diff) | |
download | numpy-005583cc50abc22d1784f51cc0f19b0e2367fb82.tar.gz |
Allow array_descriptor format to also use alignment. Force objects with _fields_ attribute to use alignment (ctypes case).
Diffstat (limited to 'numpy/core/src/arrayobject.c')
-rw-r--r-- | numpy/core/src/arrayobject.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/numpy/core/src/arrayobject.c b/numpy/core/src/arrayobject.c index 4e18f2fa5..4b6ae3a6f 100644 --- a/numpy/core/src/arrayobject.c +++ b/numpy/core/src/arrayobject.c @@ -10865,10 +10865,6 @@ static PyGetSetDef arraydescr_getsets[] = { {NULL, NULL, NULL, NULL}, }; -static PyArray_Descr *_convert_from_dict(PyObject *obj, int align); -static PyArray_Descr *_convert_from_commastring(PyObject *obj, int align); -static PyArray_Descr *_convert_from_array_descr(PyObject *obj); - static PyObject * arraydescr_new(PyTypeObject *subtype, PyObject *args, PyObject *kwds) { |