diff options
author | Stephan Hoyer <shoyer@google.com> | 2017-04-21 00:05:44 -0700 |
---|---|---|
committer | Stephan Hoyer <shoyer@google.com> | 2017-04-30 20:37:48 -0700 |
commit | 8db9662a3352ab029a5bbc2d81e5363d7a388e2e (patch) | |
tree | 829b6d03dc3927538336913158fd7b15ee12682f /doc/source/reference/c-api.array.rst | |
parent | 590facafcbd454fc02f96aa52c1c3412d6cccd14 (diff) | |
download | numpy-8db9662a3352ab029a5bbc2d81e5363d7a388e2e.tar.gz |
ENH: add np.positive ufunc and use it for ndarray.__pos__
xref GH8932
Diffstat (limited to 'doc/source/reference/c-api.array.rst')
-rw-r--r-- | doc/source/reference/c-api.array.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/source/reference/c-api.array.rst b/doc/source/reference/c-api.array.rst index b50f86e46..35df42daa 100644 --- a/doc/source/reference/c-api.array.rst +++ b/doc/source/reference/c-api.array.rst @@ -3129,8 +3129,8 @@ Internal Flexibility **add**, **subtract**, **multiply**, **divide**, **remainder**, **power**, **square**, **reciprocal**, - **ones_like**, **sqrt**, **negative**, **absolute**, - **invert**, **left_shift**, **right_shift**, + **ones_like**, **sqrt**, **negative**, **positive**, + **absolute**, **invert**, **left_shift**, **right_shift**, **bitwise_and**, **bitwise_xor**, **bitwise_or**, **less**, **less_equal**, **equal**, **not_equal**, **greater**, **greater_equal**, **floor_divide**, |