diff options
author | Yaron de Leeuw <jarondl@server.fake> | 2013-09-21 19:09:44 +0300 |
---|---|---|
committer | Yaron de Leeuw <jarondl@server.fake> | 2013-09-21 19:09:44 +0300 |
commit | 9b7beb6aed058f318a65277816866a81275087fa (patch) | |
tree | 901320a0e4c7c7073b7e4a9310513c89514bbf82 /numpy/lib | |
parent | 3a4fbed7281d118659035875104ee447dfd1e47c (diff) | |
download | numpy-9b7beb6aed058f318a65277816866a81275087fa.tar.gz |
DOC STY: make npyio docstrings less than 80 chars
Diffstat (limited to 'numpy/lib')
-rw-r--r-- | numpy/lib/npyio.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/numpy/lib/npyio.py b/numpy/lib/npyio.py index 56aad0d7c..888bf4370 100644 --- a/numpy/lib/npyio.py +++ b/numpy/lib/npyio.py @@ -283,7 +283,7 @@ class NpzFile(object): def load(file, mmap_mode=None): """ - Load an array(s) or pickled objects from ``.npy``, ``.npz``, or pickled files. + Load arrays or pickled objects from ``.npy``, ``.npz`` or pickled files. Parameters ---------- @@ -457,9 +457,9 @@ def savez(file, *args, **kwds): Save several arrays into a single file in uncompressed ``.npz`` format. If arguments are passed in with no keywords, the corresponding variable - names, in the ``.npz`` file, are 'arr_0', 'arr_1', etc. If keyword arguments - are given, the corresponding variable names, in the ``.npz`` file will - match the keyword names. + names, in the ``.npz`` file, are 'arr_0', 'arr_1', etc. If keyword + arguments are given, the corresponding variable names, in the ``.npz`` + file will match the keyword names. Parameters ---------- @@ -484,7 +484,7 @@ def savez(file, *args, **kwds): -------- save : Save a single array to a binary file in NumPy format. savetxt : Save an array to a file as plain text. - savez_compressed : Save several arrays into a compressed ``.npz`` file format + savez_compressed : Save several arrays into a compressed ``.npz`` archive Notes ----- @@ -924,7 +924,7 @@ def savetxt(fname, X, fmt='%.18e', delimiter=' ', newline='\n', header='', -------- save : Save an array to a binary file in NumPy ``.npy`` format savez : Save several arrays into an uncompressed ``.npz`` archive - savez_compressed : Save several arrays into a compressed ``.npz`` file format + savez_compressed : Save several arrays into a compressed ``.npz`` archive Notes ----- |