summaryrefslogtreecommitdiff
path: root/numpy/lib/io.py
diff options
context:
space:
mode:
authorAlan McIntyre <alan.mcintyre@local>2008-07-23 13:23:52 +0000
committerAlan McIntyre <alan.mcintyre@local>2008-07-23 13:23:52 +0000
commit1ab04d3ed8d4597922055396a9ba17f00bfc86ad (patch)
tree74bcbf2af0bf830779688e71faf601c8aa4c0d3c /numpy/lib/io.py
parent0175369fb56e29d891a0d8f9517f9149ed4e602f (diff)
downloadnumpy-1ab04d3ed8d4597922055396a9ba17f00bfc86ad.tar.gz
Fix doctest command continuation line.
Diffstat (limited to 'numpy/lib/io.py')
-rw-r--r--numpy/lib/io.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/lib/io.py b/numpy/lib/io.py
index e2c3933bf..424df21a6 100644
--- a/numpy/lib/io.py
+++ b/numpy/lib/io.py
@@ -270,7 +270,7 @@ def loadtxt(fname, dtype=float, comments='#', delimiter=None, converters=None,
>>> X = loadtxt('test.dat') # data in two columns
>>> x,y,z = load('somefile.dat', usecols=(3,5,7), unpack=True)
>>> r = np.loadtxt('record.dat', dtype={'names':('gender','age','weight'),
- 'formats': ('S1','i4', 'f4')})
+ ... 'formats': ('S1','i4', 'f4')})
SeeAlso: scipy.io.loadmat to read and write matfiles.
"""