From abc0c4fa9970931849b3da598c5980a5b170661e Mon Sep 17 00:00:00 2001 From: HongWeipeng <961365124@qq.com> Date: Sun, 5 Jan 2020 16:20:29 -0600 Subject: Fix the parameter list of object. _rpow_ (#GH-16477) --- Doc/reference/datamodel.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- cgit v0.12