summaryrefslogtreecommitdiff
path: root/numpy/lib/format.py
diff options
context:
space:
mode:
authormattip <matti.picus@gmail.com>2018-05-13 11:09:05 +0300
committermattip <matti.picus@gmail.com>2018-05-13 11:09:05 +0300
commit85282a5dac927ed731655e0a58fb67d2483f18b9 (patch)
tree577ce3314bebd9a9b0b58bd552102a1d67b276e9 /numpy/lib/format.py
parent25a2d3079ffb9fd0df5e87639941e83d63cd480c (diff)
downloadnumpy-85282a5dac927ed731655e0a58fb67d2483f18b9.tar.gz
DOC: link to updated module docstring, not NEP
Diffstat (limited to 'numpy/lib/format.py')
-rw-r--r--numpy/lib/format.py11
1 files changed, 8 insertions, 3 deletions
diff --git a/numpy/lib/format.py b/numpy/lib/format.py
index 363bb2101..afa154cc5 100644
--- a/numpy/lib/format.py
+++ b/numpy/lib/format.py
@@ -1,5 +1,8 @@
"""
-Define a simple format for saving numpy arrays to disk with the full
+Binary Serialization
+====================
+
+A simple format for saving numpy arrays to disk with the full
information about them.
The ``.npy`` format is the standard binary file format in NumPy for
@@ -143,8 +146,10 @@ data HEADER_LEN."
Notes
-----
-The ``.npy`` format, including reasons for creating it and a comparison of
-alternatives, is described fully in the "npy-format" NEP.
+The ``.npy`` format, including motivation for creating it and a comparison of
+alternatives, is described in the `"npy-format" NEP
+<http://www.numpy.org/neps/nep-0001-npy-format.html>`_, however details have
+evolved with time and this document is more current.
"""
from __future__ import division, absolute_import, print_function