summaryrefslogtreecommitdiff
path: root/doc/release
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2018-01-06 18:20:25 -0700
committerCharles Harris <charlesr.harris@gmail.com>2018-01-06 18:20:25 -0700
commit754cc37b485d5735ef25ef15d0ec6d5aecf6666f (patch)
tree9a13ce30a1a11a695b0ae61685a84e56ba98a042 /doc/release
parent9a902b775c12be99708a0a33a244ace3521855de (diff)
downloadpython-numpy-754cc37b485d5735ef25ef15d0ec6d5aecf6666f.tar.gz
python-numpy-754cc37b485d5735ef25ef15d0ec6d5aecf6666f.tar.bz2
python-numpy-754cc37b485d5735ef25ef15d0ec6d5aecf6666f.zip
DOC: Post 1.14.0 release updates.
* Update .mailmap * Update 1.14.0-notes.rst * Add 1.14.0-changelog.rst [skip ci]
Diffstat (limited to 'doc/release')
-rw-r--r--doc/release/1.14.0-notes.rst12
1 files changed, 4 insertions, 8 deletions
diff --git a/doc/release/1.14.0-notes.rst b/doc/release/1.14.0-notes.rst
index 03b9263bc..2f71242b3 100644
--- a/doc/release/1.14.0-notes.rst
+++ b/doc/release/1.14.0-notes.rst
@@ -307,20 +307,16 @@ In summary, the major changes are:
* User-defined ``dtypes`` (subclasses of ``np.generic``) now need to
implement ``__str__`` and ``__repr__``.
-You may want to do something like::
+Some of these changes are described in more detail below. If you need to retain
+the previous behavior for doctests or other reasons, you may want to do
+something like::
- # FIXME: Set numpy array str/repr to legacy behaviour on numpy > 1.13
+ # FIXME: We need the str/repr formatting used in Numpy < 1.14.
try:
np.set_printoptions(legacy='1.13')
except TypeError:
pass
-after ::
-
- import numpy as np
-
-Some of these changes are described in more detail below.
-
C API changes
=============