summaryrefslogtreecommitdiff
path: root/doc/source/reference
diff options
context:
space:
mode:
authorStephan Hoyer <shoyer@google.com>2017-04-21 00:05:44 -0700
committerStephan Hoyer <shoyer@google.com>2017-04-30 20:37:48 -0700
commit8db9662a3352ab029a5bbc2d81e5363d7a388e2e (patch)
tree829b6d03dc3927538336913158fd7b15ee12682f /doc/source/reference
parent590facafcbd454fc02f96aa52c1c3412d6cccd14 (diff)
downloadnumpy-8db9662a3352ab029a5bbc2d81e5363d7a388e2e.tar.gz
ENH: add np.positive ufunc and use it for ndarray.__pos__
xref GH8932
Diffstat (limited to 'doc/source/reference')
-rw-r--r--doc/source/reference/c-api.array.rst4
-rw-r--r--doc/source/reference/ufuncs.rst1
2 files changed, 3 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**,
diff --git a/doc/source/reference/ufuncs.rst b/doc/source/reference/ufuncs.rst
index bcd3d5f0a..94663a141 100644
--- a/doc/source/reference/ufuncs.rst
+++ b/doc/source/reference/ufuncs.rst
@@ -505,6 +505,7 @@ Math operations
true_divide
floor_divide
negative
+ positive
power
remainder
mod