diff options
author | Mark Dickinson <mdickinson@enthought.com> | 2019-06-02 09:24:06 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-02 09:24:06 (GMT) |
commit | c52996785a45d4693857ea219e040777a14584f8 (patch) | |
tree | ee1d54ea597b45ef0d57407f8affaffe57f93be6 /Misc | |
parent | 5ae299ac78abb628803ab7dee0997364547f5cc8 (diff) | |
download | cpython-c52996785a45d4693857ea219e040777a14584f8.zip cpython-c52996785a45d4693857ea219e040777a14584f8.tar.gz cpython-c52996785a45d4693857ea219e040777a14584f8.tar.bz2 |
bpo-36027: Extend three-argument pow to negative second argument (GH-13266)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2019-05-12-18-46-50.bpo-36027.Q4YatQ.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2019-05-12-18-46-50.bpo-36027.Q4YatQ.rst b/Misc/NEWS.d/next/Core and Builtins/2019-05-12-18-46-50.bpo-36027.Q4YatQ.rst new file mode 100644 index 0000000..866309c --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2019-05-12-18-46-50.bpo-36027.Q4YatQ.rst @@ -0,0 +1,3 @@ +Allow computation of modular inverses via three-argument ``pow``: the second +argument is now permitted to be negative in the case where the first and +third arguments are relatively prime. |