From 20ec480ff8979fce00ab076ef74893815bf88f4e Mon Sep 17 00:00:00 2001 From: Travis Oliphant Date: Mon, 15 Feb 2010 23:13:16 +0000 Subject: API and ABI changes: Removed BigArrayType, Fixed hasobject to an integer (and inserted an unused character for alignment) and renamed it to flags. Re-organized the ArrFuncs structure. Moved NPY_DATETIME and friends to their 'correct' place in the type order. --- doc/pyrex/c_numpy.pxd | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'doc/pyrex') diff --git a/doc/pyrex/c_numpy.pxd b/doc/pyrex/c_numpy.pxd index 511acc4b1..8064091e0 100644 --- a/doc/pyrex/c_numpy.pxd +++ b/doc/pyrex/c_numpy.pxd @@ -75,7 +75,8 @@ cdef extern from "numpy/arrayobject.h": ctypedef extern class numpy.dtype [object PyArray_Descr]: cdef int type_num, elsize, alignment - cdef char type, kind, byteorder, hasobject + cdef char type, kind, byteorder + cdef int flags cdef object fields, typeobj ctypedef extern class numpy.ndarray [object PyArrayObject]: -- cgit v1.2.1