diff options
-rw-r--r-- | doc/source/user/basics.rec.rst | 6 | ||||
-rw-r--r-- | numpy/lib/recfunctions.py | 13 |
2 files changed, 13 insertions, 6 deletions
diff --git a/doc/source/user/basics.rec.rst b/doc/source/user/basics.rec.rst index 1be5af081..b885c9e77 100644 --- a/doc/source/user/basics.rec.rst +++ b/doc/source/user/basics.rec.rst @@ -5,3 +5,9 @@ Structured arrays ***************** .. automodule:: numpy.doc.structured_arrays + +Recarray Helper Functions +************************* + +.. automodule:: numpy.lib.recfunctions + :members: 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 ? |