summaryrefslogtreecommitdiffstats
path: root/Doc/library/functions.rst
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2020-03-19 18:35:02 (GMT)
committerGitHub <noreply@github.com>2020-03-19 18:35:02 (GMT)
commit2477aed12d409c78a16ec435e01cee235af53221 (patch)
treed6507349ee672f49e2361414e30e857427f24f75 /Doc/library/functions.rst
parentec8a973f7cf080d9c0679f058b2371f0b7c7862c (diff)
downloadcpython-2477aed12d409c78a16ec435e01cee235af53221.zip
cpython-2477aed12d409c78a16ec435e01cee235af53221.tar.gz
cpython-2477aed12d409c78a16ec435e01cee235af53221.tar.bz2
Fix "versionchanged" for pow named arguments (GH-19042) (GH-19079)
The ability to use named arguments in "pow" was introduced in Python 3.8, not Python 3.9. See https://bugs.python.org/issue38237 (cherry picked from commit c691f209523e20797c7b696c3f171b37429f5b3f) Co-authored-by: Mark Dickinson <mdickinson@enthought.com>
Diffstat (limited to 'Doc/library/functions.rst')
-rw-r--r--Doc/library/functions.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/functions.rst b/Doc/library/functions.rst
index 6feb26c..0f7df0e 100644
--- a/Doc/library/functions.rst
+++ b/Doc/library/functions.rst
@@ -1304,7 +1304,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.