From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Sun, 5 Jan 2020 22:37:37 +0000 (-0800) Subject: Fix the parameter list of object. _rpow_ (GH-GH-16477) X-Git-Tag: v3.7.7rc1~105 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b853a7c6c0cf19c081efcc07336d9e9b8d2a7fae;p=thirdparty%2FPython%2Fcpython.git Fix the parameter list of object. _rpow_ (GH-GH-16477) (cherry picked from commit abc0c4fa9970931849b3da598c5980a5b170661e) Co-authored-by: HongWeipeng <961365124@qq.com> --- diff --git a/Doc/reference/datamodel.rst b/Doc/reference/datamodel.rst index c38dcdc4e512..7d6cc34373b6 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)