diff options
author | Travis Oliphant <oliphant@enthought.com> | 2010-02-15 23:13:16 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2010-02-15 23:13:16 +0000 |
commit | 20ec480ff8979fce00ab076ef74893815bf88f4e (patch) | |
tree | b6eda881cdb7050f6386f899cc2c7451acc3c505 /doc/CAPI.txt | |
parent | 29efc30b7b2290abf7c6d4d5eeddd5a97502098a (diff) | |
download | numpy-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/CAPI.txt')
-rw-r--r-- | doc/CAPI.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/CAPI.txt b/doc/CAPI.txt index 28738635e..41241ce5a 100644 --- a/doc/CAPI.txt +++ b/doc/CAPI.txt @@ -61,9 +61,9 @@ This is a very flexible function. ``subtype`` : ``PyTypeObject *`` The subtype that should be created (either pass in - ``&PyArray_Type``, ``&PyBigArray_Type``, or ``obj->ob_type``, + ``&PyArray_Type``, or ``obj->ob_type``, where ``obj`` is a an instance of a subtype (or subclass) of - ``PyArray_Type`` or ``PyBigArray_Type``). + ``PyArray_Type``). ``descr`` : ``PyArray_Descr *`` The type descriptor for the array. This is a Python object (this @@ -114,7 +114,7 @@ This is a very flexible function. order array. See below for an explanation of the flags. ``obj`` : ``PyObject *`` - If subtypes is ``&PyArray_Type`` or ``&PyBigArray_Type``, this argument is + If subtypes is ``&PyArray_Type``, this argument is ignored. Otherwise, the ``__array_finalize__`` method of the subtype is called (if present) and passed this object. This is usually an array of the type to be created (so the ``__array_finalize__`` method |