diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2021-08-17 17:38:03 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-17 17:38:03 (GMT) |
commit | 3f81e9628f6f104c103d0e38adb84c51e5261626 (patch) | |
tree | 6abe21f976efecf242815d45dd823dc49791847c /Misc | |
parent | f6bd1ca166a9c8c9769fb23bc6d8f9c6dcc907ab (diff) | |
download | cpython-3f81e9628f6f104c103d0e38adb84c51e5261626.zip cpython-3f81e9628f6f104c103d0e38adb84c51e5261626.tar.gz cpython-3f81e9628f6f104c103d0e38adb84c51e5261626.tar.bz2 |
bpo-44698: Restore complex pow behaviour for small integral exponents (GH-27772) (GH-27796)
(cherry picked from commit 4b9a2dcf19e5d13c3bc2afea2de1f65cd994c699)
Co-authored-by: Mark Dickinson <mdickinson@enthought.com>
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2021-08-15-10-39-06.bpo-44698.lITKNc.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2021-08-15-10-39-06.bpo-44698.lITKNc.rst b/Misc/NEWS.d/next/Core and Builtins/2021-08-15-10-39-06.bpo-44698.lITKNc.rst new file mode 100644 index 0000000..f197253 --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2021-08-15-10-39-06.bpo-44698.lITKNc.rst @@ -0,0 +1,2 @@ +Restore behaviour of complex exponentiation with integer-valued exponent of +type :class:`float` or :class:`complex`. |