diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2015-06-21 18:07:06 -0400 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2015-06-21 18:07:06 -0400 |
commit | f0c898b6017cc011561d7f1e611e08283ecfdb08 (patch) | |
tree | 4406a2c8d1cad085eeacbd09be3947a9bf97aa2e /numpy/lib | |
parent | 23e6b74a74857136a0fd2919f4d37da370d55ec4 (diff) | |
parent | 4e5545f0bcc654fb0c6752dcf72120e6e7340d28 (diff) | |
download | numpy-f0c898b6017cc011561d7f1e611e08283ecfdb08.tar.gz |
Merge pull request #5490 from charris/cleanup-gh-4986
DOC: Update indexing docs.
Diffstat (limited to 'numpy/lib')
-rw-r--r-- | numpy/lib/function_base.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/numpy/lib/function_base.py b/numpy/lib/function_base.py index 3826715e1..26d25cd6d 100644 --- a/numpy/lib/function_base.py +++ b/numpy/lib/function_base.py @@ -547,8 +547,7 @@ def average(a, axis=None, weights=None, returned=False): def asarray_chkfinite(a, dtype=None, order=None): - """ - Convert the input to an array, checking for NaNs or Infs. + """Convert the input to an array, checking for NaNs or Infs. Parameters ---------- @@ -559,8 +558,9 @@ def asarray_chkfinite(a, dtype=None, order=None): dtype : data-type, optional By default, the data-type is inferred from the input data. order : {'C', 'F'}, optional - Whether to use row-major ('C') or column-major ('FORTRAN') memory - representation. Defaults to 'C'. + Whether to use row-major (C-style) or + column-major (Fortran-style) memory representation. + Defaults to 'C'. Returns ------- |