diff options
author | Ralf Gommers <ralf.gommers@googlemail.com> | 2015-01-02 13:14:58 +0100 |
---|---|---|
committer | Ralf Gommers <ralf.gommers@googlemail.com> | 2015-01-02 13:16:16 +0100 |
commit | 20bc2ebc50e3f02031e1867d036545c3e7d52af0 (patch) | |
tree | 460af6095fd8dca502fb14dcc47133629ca9d35a /numpy/lib/npyio.py | |
parent | c852f5999c79fa7b7799756e824dcc0270e58913 (diff) | |
download | numpy-20bc2ebc50e3f02031e1867d036545c3e7d52af0.tar.gz |
DOC: link to the npy-format NEP in numpy.npyio docs. Closes gh-4523.
[ci skip]
Diffstat (limited to 'numpy/lib/npyio.py')
-rw-r--r-- | numpy/lib/npyio.py | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/numpy/lib/npyio.py b/numpy/lib/npyio.py index 63b7e8df7..5f274f27c 100644 --- a/numpy/lib/npyio.py +++ b/numpy/lib/npyio.py @@ -433,7 +433,8 @@ def save(file, arr): Notes ----- For a description of the ``.npy`` format, see the module docstring - of `numpy.lib.format`. + of `numpy.lib.format` or the Numpy Enhancement Proposal + http://docs.scipy.org/doc/numpy/neps/npy-format.html Examples -------- @@ -504,7 +505,9 @@ def savez(file, *args, **kwds): The ``.npz`` file format is a zipped archive of files named after the variables they contain. The archive is not compressed and each file in the archive contains one variable in ``.npy`` format. For a - description of the ``.npy`` format, see `format`. + description of the ``.npy`` format, see `numpy.lib.format` or the + Numpy Enhancement Proposal + http://docs.scipy.org/doc/numpy/neps/npy-format.html When opening the saved ``.npz`` file with `load` a `NpzFile` object is returned. This is a dictionary-like object which can be queried for |