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
This commit is contained in:
Mark Dickinson 2020-03-19 18:12:59 +00:00 committed by GitHub
parent 13397ee47d
commit c691f20952
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1311,7 +1311,7 @@ are always available. They are listed here in alphabetical order.
the second argument to be negative, permitting computation of modular the second argument to be negative, permitting computation of modular
inverses. inverses.
.. versionchanged:: 3.9 .. versionchanged:: 3.8
Allow keyword arguments. Formerly, only positional arguments were Allow keyword arguments. Formerly, only positional arguments were
supported. supported.