diff options
author | David Cournapeau <cournape@gmail.com> | 2009-03-11 07:51:24 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2009-03-11 07:51:24 +0000 |
commit | 1c9975bd5e74cf7618b483f107597400b9ea3fd7 (patch) | |
tree | 07f146302f0933dc25ff4cc90cd5ac8b9e483c89 /doc/release/1.3.0-notes.rst | |
parent | 4326a5176293cdeb93485d27cbc4c6d8cc2e2dc4 (diff) | |
download | numpy-1c9975bd5e74cf7618b483f107597400b9ea3fd7.tar.gz |
Put NPY_NAN and co at the correct location in the releases notes.
Diffstat (limited to 'doc/release/1.3.0-notes.rst')
-rw-r--r-- | doc/release/1.3.0-notes.rst | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/doc/release/1.3.0-notes.rst b/doc/release/1.3.0-notes.rst index 57c5864e1..d79414e67 100644 --- a/doc/release/1.3.0-notes.rst +++ b/doc/release/1.3.0-notes.rst @@ -160,6 +160,19 @@ below for details): Those provide portable alternatives to glibc endian.h macros for platforms without it. +Portable NAN, INFINITY, etc... +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +npy_math.h now makes available several portable macro to get NAN, INFINITY: + + * NPY_NAN: equivalent to NAN, which is a GNU extension + * NPY_INFINITY: equivalent to C99 INFINITY + * NPY_PZERO, NPY_NZERO: positive and negative zero respectively + +Corresponding single and extended precision macros are available as well. All +references to NAN, or home-grown computation of NAN on the fly have been +removed for consistency. + Internal changes ================ @@ -197,19 +210,6 @@ prefix (npy_cos vs cos). The core library will be made available to any extension in 1.4.0. -Portable NAN, INFINITY, etc... -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -npy_math.h now makes available several portable macro to get NAN, INFINITY: - - * NPY_NAN: equivalent to NAN, which is a GNU extension - * NPY_INFINITY: equivalent to C99 INFINITY - * NPY_PZERO, NPY_NZERO: positive and negative zero respectively - -Corresponding single and extended precision macros are available as well. All -references to NAN, or home-grown computation of NAN on the fly have been -removed for consistency. - CPU arch detection ~~~~~~~~~~~~~~~~~~ |