summaryrefslogtreecommitdiff
path: root/numpy/core/src/arrayobject.c
diff options
context:
space:
mode:
authorTravis Oliphant <oliphant@enthought.com>2006-11-17 20:40:54 +0000
committerTravis Oliphant <oliphant@enthought.com>2006-11-17 20:40:54 +0000
commit005583cc50abc22d1784f51cc0f19b0e2367fb82 (patch)
tree256feb17c648d063414a843cde63c85e9055fcf9 /numpy/core/src/arrayobject.c
parentccd63380eb664f67c5fa9fcaad8860138c8c0607 (diff)
downloadnumpy-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.c4
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)
{