summaryrefslogtreecommitdiffstats
path: root/Doc/reference/datamodel.rst
diff options
context:
space:
mode:
authorHongWeipeng <961365124@qq.com>2020-01-05 22:20:29 (GMT)
committerCheryl Sabella <cheryl.sabella@gmail.com>2020-01-05 22:20:29 (GMT)
commitabc0c4fa9970931849b3da598c5980a5b170661e (patch)
treef8e7c8b80129808b2a995ca5669f0e2120421c42 /Doc/reference/datamodel.rst
parente6ae90dede07e8599cc6906417ca4aa99d8aa6e4 (diff)
downloadcpython-abc0c4fa9970931849b3da598c5980a5b170661e.zip
cpython-abc0c4fa9970931849b3da598c5980a5b170661e.tar.gz
cpython-abc0c4fa9970931849b3da598c5980a5b170661e.tar.bz2
Fix the parameter list of object. _rpow_ (#GH-16477)
Diffstat (limited to 'Doc/reference/datamodel.rst')
-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 c242041..1442fbe 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)