diff options
author | Jarrod Millman <jarrod.millman@gmail.com> | 2017-12-12 14:02:48 -0800 |
---|---|---|
committer | Jarrod Millman <jarrod.millman@gmail.com> | 2017-12-14 15:37:12 -0800 |
commit | 976554a3eb4e66ebfeef2e9aace2cf4eb1e83e67 (patch) | |
tree | 41bf3a9a49414e097420a78ef0b54c26b03f7570 /numpy/lib/npyio.py | |
parent | f88d035266d4582c4eb40be9b4c0fe716d5ec24b (diff) | |
download | numpy-976554a3eb4e66ebfeef2e9aace2cf4eb1e83e67.tar.gz |
DOC: Prepare to host NEPs on GH pages
Diffstat (limited to 'numpy/lib/npyio.py')
-rw-r--r-- | numpy/lib/npyio.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/numpy/lib/npyio.py b/numpy/lib/npyio.py index 66dc68538..9ee0aaaae 100644 --- a/numpy/lib/npyio.py +++ b/numpy/lib/npyio.py @@ -477,7 +477,7 @@ def save(file, arr, allow_pickle=True, fix_imports=True): ----- For a description of the ``.npy`` format, see the module docstring of `numpy.lib.format` or the NumPy Enhancement Proposal - http://docs.scipy.org/doc/numpy/neps/npy-format.html + http://numpy.github.io/neps/npy-format.html Examples -------- @@ -563,7 +563,7 @@ def savez(file, *args, **kwds): in the archive contains one variable in ``.npy`` format. For a description of the ``.npy`` format, see `numpy.lib.format` or the NumPy Enhancement Proposal - http://docs.scipy.org/doc/numpy/neps/npy-format.html + http://numpy.github.io/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 @@ -644,7 +644,7 @@ def savez_compressed(file, *args, **kwds): ``zipfile.ZIP_DEFLATED`` and each file in the archive contains one variable in ``.npy`` format. For a description of the ``.npy`` format, see `numpy.lib.format` or the NumPy Enhancement Proposal - http://docs.scipy.org/doc/numpy/neps/npy-format.html + http://numpy.github.io/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 |