diff options
author | Mark Dickinson <mdickinson@enthought.com> | 2020-03-19 18:12:59 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-19 18:12:59 (GMT) |
commit | c691f209523e20797c7b696c3f171b37429f5b3f (patch) | |
tree | 6b7ac136ce1aaab625e0638e5543a4c96574a37f /Doc | |
parent | 13397ee47d23fda2e8d4bef40c1df986457673d1 (diff) | |
download | cpython-c691f209523e20797c7b696c3f171b37429f5b3f.zip cpython-c691f209523e20797c7b696c3f171b37429f5b3f.tar.gz cpython-c691f209523e20797c7b696c3f171b37429f5b3f.tar.bz2 |
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')
-rw-r--r-- | Doc/library/functions.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/functions.rst b/Doc/library/functions.rst index 3474216..90a2370 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. |