diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2018-06-01 18:33:42 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-01 18:33:42 -0600 |
commit | ceff8dd216fe9cc8d7231b8cf691ae8465ccefb5 (patch) | |
tree | 0b1ae180b8647e23cbc373d303113bdc8bc92fa8 /numpy/lib/recfunctions.py | |
parent | fd7dfcea8b95641f7794c669505f9cab86bc130d (diff) | |
parent | 0646f01a2b01cfa493818a8d3f0bc9b65a7264aa (diff) | |
download | numpy-ceff8dd216fe9cc8d7231b8cf691ae8465ccefb5.tar.gz |
Merge pull request #11225 from mattip/document-recfunctions
DOC: add existing recfunctions documentation to output
Diffstat (limited to 'numpy/lib/recfunctions.py')
-rw-r--r-- | numpy/lib/recfunctions.py | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/numpy/lib/recfunctions.py b/numpy/lib/recfunctions.py index e9ba38f46..c455bd93f 100644 --- a/numpy/lib/recfunctions.py +++ b/numpy/lib/recfunctions.py @@ -397,12 +397,13 @@ def merge_arrays(seqarrays, fill_value=-1, flatten=False, Notes ----- * Without a mask, the missing value will be filled with something, - * depending on what its corresponding type: - -1 for integers - -1.0 for floating point numbers - '-' for characters - '-1' for strings - True for boolean values + depending on what its corresponding type: + + * ``-1`` for integers + * ``-1.0`` for floating point numbers + * ``'-'`` for characters + * ``'-1'`` for strings + * ``True`` for boolean values * XXX: I just obtained these values empirically """ # Only one item in the input sequence ? |