diff options
author | Jaime <jaime.frio@gmail.com> | 2015-03-02 12:32:24 -0800 |
---|---|---|
committer | Jaime <jaime.frio@gmail.com> | 2015-03-02 12:32:24 -0800 |
commit | 03506a9e72d85d596021e11e9b39c5a0fd1f2eba (patch) | |
tree | d5fd6bbe2d034e12a18c06f4299887166ed6ff81 /numpy/lib/_iotools.py | |
parent | 83b680b84a83c3e4b56e79396c395e30af650ba8 (diff) | |
parent | 6ca778d275ade854cfc81a6a975230c4ccd9402c (diff) | |
download | numpy-03506a9e72d85d596021e11e9b39c5a0fd1f2eba.tar.gz |
Merge pull request #5622 from rmcgibbo/maint-docstrings
MAINT: Reconcile docstrings and function signatures where they disagree
Diffstat (limited to 'numpy/lib/_iotools.py')
-rw-r--r-- | numpy/lib/_iotools.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/numpy/lib/_iotools.py b/numpy/lib/_iotools.py index 316704b42..54ed96490 100644 --- a/numpy/lib/_iotools.py +++ b/numpy/lib/_iotools.py @@ -160,7 +160,7 @@ class LineSplitter(object): delimiter : str, int, or sequence of ints, optional If a string, character used to delimit consecutive fields. If an integer or a sequence of integers, width(s) of each field. - comment : str, optional + comments : str, optional Character used to mark the beginning of a comment. Default is '#'. autostrip : bool, optional Whether to strip each individual field. Default is True. @@ -271,7 +271,7 @@ class NameValidator(object): deletechars : str, optional A string combining invalid characters that must be deleted from the names. - casesensitive : {True, False, 'upper', 'lower'}, optional + case_sensitive : {True, False, 'upper', 'lower'}, optional * If True, field names are case-sensitive. * If False or 'upper', field names are converted to upper case. * If 'lower', field names are converted to lower case. @@ -341,7 +341,7 @@ class NameValidator(object): defaultfmt : str, optional Default format string, used if validating a given string reduces its length to zero. - nboutput : integer, optional + nbfields : integer, optional Final number of validated names, used to expand or shrink the initial list of names. |