summaryrefslogtreecommitdiff
path: root/doc/numpybook/comparison
diff options
context:
space:
mode:
authorTravis Oliphant <oliphant@enthought.com>2010-02-15 23:13:16 +0000
committerTravis Oliphant <oliphant@enthought.com>2010-02-15 23:13:16 +0000
commit20ec480ff8979fce00ab076ef74893815bf88f4e (patch)
treeb6eda881cdb7050f6386f899cc2c7451acc3c505 /doc/numpybook/comparison
parent29efc30b7b2290abf7c6d4d5eeddd5a97502098a (diff)
downloadnumpy-20ec480ff8979fce00ab076ef74893815bf88f4e.tar.gz
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.
Diffstat (limited to 'doc/numpybook/comparison')
-rw-r--r--doc/numpybook/comparison/pyrex/c_numpy.pxd3
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/numpybook/comparison/pyrex/c_numpy.pxd b/doc/numpybook/comparison/pyrex/c_numpy.pxd
index e772f6fee..66e77e294 100644
--- a/doc/numpybook/comparison/pyrex/c_numpy.pxd
+++ b/doc/numpybook/comparison/pyrex/c_numpy.pxd
@@ -73,7 +73,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]: