diff options
author | Brandt Bucher <brandtbucher@microsoft.com> | 2025-01-08 01:25:48 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-01-08 01:25:48 (GMT) |
commit | 65ae3d5a73ca3c53a0c6b601dddb8e9b3b6e3f51 (patch) | |
tree | 08dc3c35f3163f6cf176bd5e4aa82519333b6ed8 /Misc | |
parent | e08b28235a863323ca3a7e444776bb7803e77caf (diff) | |
download | cpython-65ae3d5a73ca3c53a0c6b601dddb8e9b3b6e3f51.zip cpython-65ae3d5a73ca3c53a0c6b601dddb8e9b3b6e3f51.tar.gz cpython-65ae3d5a73ca3c53a0c6b601dddb8e9b3b6e3f51.tar.bz2 |
GH-127809: Fix the JIT's understanding of ** (GH-127844)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Core_and_Builtins/2024-12-11-14-32-22.gh-issue-127809.0W8khe.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core_and_Builtins/2024-12-11-14-32-22.gh-issue-127809.0W8khe.rst b/Misc/NEWS.d/next/Core_and_Builtins/2024-12-11-14-32-22.gh-issue-127809.0W8khe.rst new file mode 100644 index 0000000..19c8cc6 --- /dev/null +++ b/Misc/NEWS.d/next/Core_and_Builtins/2024-12-11-14-32-22.gh-issue-127809.0W8khe.rst @@ -0,0 +1,2 @@ +Fix an issue where the experimental JIT may infer an incorrect result type +for exponentiation (``**`` and ``**=``), leading to bugs or crashes. |