From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Sun, 5 Jan 2020 22:37:44 +0000 (-0800) Subject: Fix the parameter list of object. _rpow_ (GH-GH-16477) X-Git-Tag: v3.8.2rc1~103 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=cfeacf228924bed5e79d420eac682708b7fad727;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 c530e4117af9..e801ee392f19 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)