diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2010-05-09 15:45:43 +0000 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2010-05-09 15:45:43 +0000 |
commit | 7d5a4558baf58464ba9c09a6ee94cf14f536efa3 (patch) | |
tree | 0905adcc907a389aa3464961e8c772de19d0131f /doc/release/2.0.0-notes.rst | |
parent | 4864c3d460db80ac1e49768df4bf3246b011e862 (diff) | |
download | numpy-7d5a4558baf58464ba9c09a6ee94cf14f536efa3.tar.gz |
Add better summary of ndarraytype.h to release notes.
Diffstat (limited to 'doc/release/2.0.0-notes.rst')
-rw-r--r-- | doc/release/2.0.0-notes.rst | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/doc/release/2.0.0-notes.rst b/doc/release/2.0.0-notes.rst index 95c17ab4f..a11b36595 100644 --- a/doc/release/2.0.0-notes.rst +++ b/doc/release/2.0.0-notes.rst @@ -59,6 +59,11 @@ by simple multiplication. new header ~~~~~~~~~~ -There is a new header ndarraytypes.h that provides needed ndarray types -that don't reference the ndarray c-api. Some folks might find this useful. + The new header file ndarraytypes.h contains the symbols from + ndarrayobject.h that no not depend on the PY_ARRAY_UNIQUE_SYMBOL and + NO_IMPORT/_ARRAY macros. Broadly, these symbols are types, typedefs, and + enumerations; the array function calls are left in ndarrayobject.h. This + allows users to include array-related types and enumerations without + needing to concern themselves with the macro expansions and their side- + effects. |