summaryrefslogtreecommitdiff
path: root/numpy/lib/npyio.py
diff options
context:
space:
mode:
authorJulian Taylor <jtaylor.debian@googlemail.com>2014-06-11 21:14:12 +0200
committerJulian Taylor <jtaylor.debian@googlemail.com>2014-06-11 21:36:32 +0200
commit6e2a69bb7a42b0b518f5a54cb949eb0f21c43331 (patch)
treec9816e53d1172f7b6961735a0d9fd0f61e9dcd1f /numpy/lib/npyio.py
parent118dc9e46f4534cfedefa1c253bb4ecd868061d1 (diff)
downloadnumpy-6e2a69bb7a42b0b518f5a54cb949eb0f21c43331.tar.gz
DOC: remove wrong mention of .gz in np.load
closes gh-312
Diffstat (limited to 'numpy/lib/npyio.py')
-rw-r--r--numpy/lib/npyio.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/numpy/lib/npyio.py b/numpy/lib/npyio.py
index c1813512a..42a539f78 100644
--- a/numpy/lib/npyio.py
+++ b/numpy/lib/npyio.py
@@ -285,8 +285,7 @@ def load(file, mmap_mode=None):
Parameters
----------
file : file-like object or string
- The file to read. Compressed files with the filename extension
- ``.gz`` are acceptable. File-like objects must support the
+ The file to read. File-like objects must support the
``seek()`` and ``read()`` methods. Pickled files require that the
file-like object support the ``readline()`` method as well.
mmap_mode : {None, 'r+', 'r', 'w+', 'c'}, optional