diff options
author | Pauli Virtanen <pav@iki.fi> | 2015-03-08 19:41:22 +0200 |
---|---|---|
committer | Pauli Virtanen <pav@iki.fi> | 2015-03-08 19:44:28 +0200 |
commit | f93238873553afb7be7148acf66b149f87899c13 (patch) | |
tree | 9c3c50bb1da3903578c5c85ded71e79efd0494ff /doc | |
parent | 8016a68ab98969630e3c5769f38065c24a802fdc (diff) | |
download | numpy-f93238873553afb7be7148acf66b149f87899c13.tar.gz |
DOC: update release notes vs np.load, np.save pickle kwargs
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 95cea6537..c38a2ae64 100644 --- a/doc/release/1.10.0-notes.rst +++ b/doc/release/1.10.0-notes.rst @@ -178,6 +178,14 @@ compare NaNs as equal by setting ``equal_nan=True``. Subclasses, such as crashed with an ``OverflowError`` in these cases). Integers larger than ``2**63-1`` are converted to floating-point values. +*np.load*, *np.save* have pickle backward compatibility flags +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +The functions *np.load* and *np.save* have additional keyword +arguments for controlling backward compatibility of pickled Python +objects. This enables Numpy on Python 3 to load npy files containing +object arrays that were generated on Python 2. + Changes ======= |