summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2020-01-05 14:37:37 -0800
committerGitHub <noreply@github.com>2020-01-05 14:37:37 -0800
commitb853a7c6c0cf19c081efcc07336d9e9b8d2a7fae (patch)
tree9a136aa850caa7c71b1f3fc92331a0aacb604e4d
parentcb4ed24a384b67ea07f0aae185c6e65049166ff8 (diff)
downloadcpython-git-b853a7c6c0cf19c081efcc07336d9e9b8d2a7fae.tar.gz
Fix the parameter list of object. _rpow_ (GH-GH-16477)
(cherry picked from commit abc0c4fa9970931849b3da598c5980a5b170661e) Co-authored-by: HongWeipeng <961365124@qq.com>
-rw-r--r--Doc/reference/datamodel.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/reference/datamodel.rst b/Doc/reference/datamodel.rst
index c38dcdc4e5..7d6cc34373 100644
--- a/Doc/reference/datamodel.rst
+++ b/Doc/reference/datamodel.rst
@@ -2318,7 +2318,7 @@ left undefined.
object.__rfloordiv__(self, other)
object.__rmod__(self, other)
object.__rdivmod__(self, other)
- object.__rpow__(self, other)
+ object.__rpow__(self, other[, modulo])
object.__rlshift__(self, other)
object.__rrshift__(self, other)
object.__rand__(self, other)