diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2014-12-12 16:50:50 -0700 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2014-12-12 16:50:50 -0700 |
commit | 26d883ce844b1c808832dd0fef3ff5f4dab85106 (patch) | |
tree | f3bc5ec89e8e01b2d9564f0a60302ee8a4c0748b /doc | |
parent | 2070ecf08a4727819b0268f761f6614a153e619c (diff) | |
download | numpy-26d883ce844b1c808832dd0fef3ff5f4dab85106.tar.gz |
REL: Update the 1.10 release notes.
Mention that diag and diagonal functions now preserve subtypes. That
can lead to incompatibilies with previous code using matrices.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/release/1.10.0-notes.rst | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/doc/release/1.10.0-notes.rst b/doc/release/1.10.0-notes.rst index 7b473f3b9..3e693f9da 100644 --- a/doc/release/1.10.0-notes.rst +++ b/doc/release/1.10.0-notes.rst @@ -28,8 +28,16 @@ Future Changes Compatibility notes =================== + +relaxed stride checking +~~~~~~~~~~~~~~~~~~~~~~~ NPY_RELAXED_STRIDE_CHECKING is now true by default. +diag and diagonal +~~~~~~~~~~~~~~~~~ +Both diag and diagonal now preserve subtypes. This will change the +dimensions of the returned diagonal in the case of matrices and that +may lead to problems in using the result. New Features ============ |