aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHongWeipeng <961365124@qq.com>2020-01-05 16:20:29 -0600
committerCheryl Sabella <cheryl.sabella@gmail.com>2020-01-05 17:20:29 -0500
commitabc0c4fa9970931849b3da598c5980a5b170661e (patch)
treef8e7c8b80129808b2a995ca5669f0e2120421c42 /Doc/reference
parentReplace links in howto/pyporting.rst with sphinx references (GH-17781) (diff)
downloadcpython-abc0c4fa9970931849b3da598c5980a5b170661e.tar.gz
cpython-abc0c4fa9970931849b3da598c5980a5b170661e.tar.bz2
cpython-abc0c4fa9970931849b3da598c5980a5b170661e.zip
Fix the parameter list of object. _rpow_ (#GH-16477)
Diffstat (limited to 'Doc/reference')
-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 c242041c73d..1442fbeb33d 100644
--- a/Doc/reference/datamodel.rst
+++ b/Doc/reference/datamodel.rst
@@ -2331,7 +2331,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)