diff options
author | Warren Weckesser <warren.weckesser@gmail.com> | 2014-12-12 10:12:59 -0500 |
---|---|---|
committer | Warren Weckesser <warren.weckesser@gmail.com> | 2014-12-12 10:12:59 -0500 |
commit | 997f4323ff4cd19943b7c4a79edfcbe46914b1be (patch) | |
tree | 16c00b46d758c93222c09360e7e5382bbe2709b6 /numpy/lib/npyio.py | |
parent | 629735bf25589d5551f9e5c1c5c3194d25511260 (diff) | |
download | numpy-997f4323ff4cd19943b7c4a79edfcbe46914b1be.tar.gz |
DOC: Give a more explicit reference to the .npy format documentation in the 'save' docstring.
Diffstat (limited to 'numpy/lib/npyio.py')
-rw-r--r-- | numpy/lib/npyio.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/numpy/lib/npyio.py b/numpy/lib/npyio.py index e7287ea8f..de6214c02 100644 --- a/numpy/lib/npyio.py +++ b/numpy/lib/npyio.py @@ -432,7 +432,8 @@ def save(file, arr): Notes ----- - For a description of the ``.npy`` format, see `format`. + For a description of the ``.npy`` format, see the module docstring + of `numpy.lib.format`. Examples -------- |