summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2009-07-27 05:43:46 +0000
committerCharles Harris <charlesr.harris@gmail.com>2009-07-27 05:43:46 +0000
commit8ccbd460dba7c909c025b1e09629786d132d89ca (patch)
tree88264334dbebff6b45c1c354438e40ec05f0fe51
parentd13418af41bfad221d2ef2a1e58ef8b917a42253 (diff)
downloadnumpy-8ccbd460dba7c909c025b1e09629786d132d89ca.tar.gz
Add some notes to the 1.4 release document.
-rw-r--r--doc/release/1.4.0-notes.rst22
1 files changed, 22 insertions, 0 deletions
diff --git a/doc/release/1.4.0-notes.rst b/doc/release/1.4.0-notes.rst
index f2804668e..6a15e318b 100644
--- a/doc/release/1.4.0-notes.rst
+++ b/doc/release/1.4.0-notes.rst
@@ -40,6 +40,28 @@ The following ufuncs have been added to the C API:
#. copysign - return the value of the first argument with the sign copied
from the second argument.
+New defines
+~~~~~~~~~~~
+
+The alpha processor is now defined and available in numpy/npy_cpu.h. The
+failed detection of the PARISC processor has been fixed. The defines are:
+
+ #. NPY_CPU_HPPA: PARISC
+ #. NPY_CPU_ALPHA: Alpha
+
+Enhancements
+~~~~~~~~~~~~
+
+ #. The sort functions now sort nans to the end.
+
+ * Real sort order is [R, nan]
+ * Complex sort order is [R + Rj, R + nanj, nan + Rj, nan + nanj]
+
+ Complex numbers with the same nan placements are sorted according to
+ the non-nan part if it exists.
+ #. Complex division has been made more resistent to overflow.
+ #. Complex floor division has been made more resistent to overflow.
+
Testing
~~~~~~~