From 1ab04d3ed8d4597922055396a9ba17f00bfc86ad Mon Sep 17 00:00:00 2001 From: Alan McIntyre Date: Wed, 23 Jul 2008 13:23:52 +0000 Subject: Fix doctest command continuation line. --- numpy/lib/io.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'numpy/lib') 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. """ -- cgit v1.2.1