summaryrefslogtreecommitdiff
path: root/Doc/library
diff options
context:
space:
mode:
authorMark Dickinson <mdickinson@enthought.com>2020-03-19 18:12:59 +0000
committerGitHub <noreply@github.com>2020-03-19 18:12:59 +0000
commitc691f209523e20797c7b696c3f171b37429f5b3f (patch)
tree6b7ac136ce1aaab625e0638e5543a4c96574a37f /Doc/library
parent13397ee47d23fda2e8d4bef40c1df986457673d1 (diff)
downloadcpython-git-c691f209523e20797c7b696c3f171b37429f5b3f.tar.gz
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
Diffstat (limited to 'Doc/library')
-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 3474216d7a..90a2370c17 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.