diff options
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. |