diff options
author | HongWeipeng <961365124@qq.com> | 2020-01-05 22:20:29 (GMT) |
---|---|---|
committer | Cheryl Sabella <cheryl.sabella@gmail.com> | 2020-01-05 22:20:29 (GMT) |
commit | abc0c4fa9970931849b3da598c5980a5b170661e (patch) | |
tree | f8e7c8b80129808b2a995ca5669f0e2120421c42 /Doc/reference/datamodel.rst | |
parent | e6ae90dede07e8599cc6906417ca4aa99d8aa6e4 (diff) | |
download | cpython-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.rst | 2 |
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) |