summaryrefslogtreecommitdiff
path: root/numpy
diff options
context:
space:
mode:
authorBas van Beek <b.f.van.beek@vu.nl>2021-05-25 17:14:35 +0200
committerBas van Beek <43369155+BvB93@users.noreply.github.com>2021-06-13 16:59:16 +0200
commit47f9a4e218a1ebaf26f60a7c27db11be10d6d7c5 (patch)
tree6bf50934fe8c7c26c14dec7dad25ce2b9017945d /numpy
parented20ff4b4a448a4f38be46256add004ecc0c3471 (diff)
downloadnumpy-47f9a4e218a1ebaf26f60a7c27db11be10d6d7c5.tar.gz
DOC: Make the `sep` argument mandatory in the `np.fromstring` signature
Diffstat (limited to 'numpy')
-rw-r--r--numpy/core/_add_newdocs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/_add_newdocs.py b/numpy/core/_add_newdocs.py
index 5be5d384a..15b2b3ad3 100644
--- a/numpy/core/_add_newdocs.py
+++ b/numpy/core/_add_newdocs.py
@@ -1280,7 +1280,7 @@ add_newdoc('numpy.core.multiarray', 'set_typeDict',
add_newdoc('numpy.core.multiarray', 'fromstring',
"""
- fromstring(string, dtype=float, count=-1, sep='', *, like=None)
+ fromstring(string, dtype=float, count=-1, *, sep, like=None)
A new 1-D array initialized from text data in a string.