From: HongWeipeng <961365124@qq.com> Date: Sun, 5 Jan 2020 22:20:29 +0000 (-0600) Subject: Fix the parameter list of object. _rpow_ (#GH-16477) X-Git-Tag: v3.9.0a3~141 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=abc0c4fa9970931849b3da598c5980a5b170661e;p=thirdparty%2FPython%2Fcpython.git Fix the parameter list of object. _rpow_ (#GH-16477) --- diff --git a/Doc/reference/datamodel.rst b/Doc/reference/datamodel.rst index c242041c73d4..1442fbeb33d7 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)