From: Mark Dickinson Date: Thu, 19 Mar 2020 18:12:59 +0000 (+0000) Subject: Fix "versionchanged" for pow named arguments (GH-19042) X-Git-Tag: v3.9.0a5~17 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c691f209523e20797c7b696c3f171b37429f5b3f;p=thirdparty%2FPython%2Fcpython.git Fix "versionchanged" for pow named arguments (GH-19042) The ability to use named arguments in "pow" was introduced in Python 3.8, not Python 3.9. See https://bugs.python.org/issue38237 --- diff --git a/Doc/library/functions.rst b/Doc/library/functions.rst index 3474216d7acb..90a2370c1793 100644 --- a/Doc/library/functions.rst +++ b/Doc/library/functions.rst @@ -1311,7 +1311,7 @@ are always available. They are listed here in alphabetical order. the second argument to be negative, permitting computation of modular inverses. - .. versionchanged:: 3.9 + .. versionchanged:: 3.8 Allow keyword arguments. Formerly, only positional arguments were supported.