diff options
Diffstat (limited to 'numpy/lib/npyio.py')
-rw-r--r-- | numpy/lib/npyio.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/numpy/lib/npyio.py b/numpy/lib/npyio.py index 862c8c9dc..1845305d1 100644 --- a/numpy/lib/npyio.py +++ b/numpy/lib/npyio.py @@ -1724,6 +1724,8 @@ def genfromtxt(fname, dtype=float, comments='#', delimiter=None, ... hello world,11 ... numpy,5''') >>> np.genfromtxt(f, dtype='S12,S12', delimiter=',') + array([(b'text', b''), (b'hello world', b'11'), (b'numpy', b'5')], + dtype=[('f0', 'S12'), ('f1', 'S12')]) """ if max_rows is not None: |