diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2015-09-26 19:23:08 -0600 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2015-09-26 19:23:08 -0600 |
commit | 97c35365beda55c6dead8c50df785eb857f843f0 (patch) | |
tree | a819b6d75322cc5dcea090d735351c96f82deed8 /numpy/add_newdocs.py | |
parent | dbd2324d8e28dcdac53f800cc3d11158bac3ff7b (diff) | |
parent | a1a03f2d73d8587d6ddc4cf410b0b9738b33bd28 (diff) | |
download | numpy-97c35365beda55c6dead8c50df785eb857f843f0.tar.gz |
Merge pull request #6368 from anntzer/empty-object-is-none
Document empty(..., object) initialization to None.
Diffstat (limited to 'numpy/add_newdocs.py')
-rw-r--r-- | numpy/add_newdocs.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/add_newdocs.py b/numpy/add_newdocs.py index ce5ef6d09..293005434 100644 --- a/numpy/add_newdocs.py +++ b/numpy/add_newdocs.py @@ -752,8 +752,8 @@ add_newdoc('numpy.core.multiarray', 'empty', Returns ------- out : ndarray - Array of uninitialized (arbitrary) data with the given - shape, dtype, and order. + Array of uninitialized (arbitrary) data of the given shape, dtype, and + order. Object arrays will be initialized to None. See Also -------- |