diff options
author | Mark Wiebe <mwiebe@enthought.com> | 2011-06-15 10:34:54 -0500 |
---|---|---|
committer | Mark Wiebe <mwiebe@enthought.com> | 2011-06-15 10:34:54 -0500 |
commit | 6376ba8fca4d9c71002b5ec59b4bb9813a95b63f (patch) | |
tree | 71cc629a8e399e26fed9b739685a858a4dc5fa12 /numpy/add_newdocs.py | |
parent | 6b5a42a777b16812e774193b06da1b68b92bc689 (diff) | |
download | numpy-6376ba8fca4d9c71002b5ec59b4bb9813a95b63f.tar.gz |
DOC: datetime-feedback: Various comment/documentation tweaks from Chuck's review feedback
Diffstat (limited to 'numpy/add_newdocs.py')
-rw-r--r-- | numpy/add_newdocs.py | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/numpy/add_newdocs.py b/numpy/add_newdocs.py index 49c0811bd..270147ae2 100644 --- a/numpy/add_newdocs.py +++ b/numpy/add_newdocs.py @@ -6032,8 +6032,8 @@ add_newdoc('numpy.core.multiarray', 'is_busday', Returns ------- out : array of bool - An array containing True for each valid business day, and - False for the others. + An array with the same shape as ``dates``, containing True for + each valid business day, and False for the others. See Also -------- @@ -6102,7 +6102,8 @@ add_newdoc('numpy.core.multiarray', 'busday_offset', Returns ------- out : array of datetime64[D] - An array containing the dates with offsets applied. + An array with a shape from broadcasting ``dates`` and ``offsets`` + together, containing the dates with offsets applied. See Also -------- @@ -6174,7 +6175,8 @@ add_newdoc('numpy.core.multiarray', 'busday_count', Returns ------- out : array of int64 - An array containing the number of business days between + An array with a shape from broadcasting ``begindates`` and ``enddates`` + together, containing the number of business days between the begin and end dates. See Also |