diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2018-01-03 16:56:05 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-03 16:56:05 -0700 |
commit | 728af07231b7bea3218f4149dfc60b8ff952b7b2 (patch) | |
tree | 9ed0cb8860c0e7a30dd9a4eb3c7adc61b12c171e /numpy/lib | |
parent | 05df34fcbb092ecb8c5776f6875c9080106c9d8f (diff) | |
parent | 489c13b6bd23b845dacc662021ed9d4d89c0d008 (diff) | |
download | numpy-728af07231b7bea3218f4149dfc60b8ff952b7b2.tar.gz |
Merge pull request #10213 from jarrodmillman/nep-process
ENH: Set up proposed NEP process
Diffstat (limited to 'numpy/lib')
-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 |