summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMark Shannon <mark@hotpy.org>2022-07-11 12:21:17 (GMT)
committerGitHub <noreply@github.com>2022-07-11 12:21:17 (GMT)
commitb87d03d355a1b303a1e0550b0da0fdeb99674da5 (patch)
tree37bc5a375548656bb4044ca8b9299ef08c7f5636 /Misc
parent30015de7235e5b4033298b85a164fcd8d96046b3 (diff)
downloadcpython-b87d03d355a1b303a1e0550b0da0fdeb99674da5.zip
cpython-b87d03d355a1b303a1e0550b0da0fdeb99674da5.tar.gz
cpython-b87d03d355a1b303a1e0550b0da0fdeb99674da5.tar.bz2
[3.10] GH-94329: Don't raise on excessive stack consumption (GH-94421) (#94448)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2022-06-29-15-45-04.gh-issue-94329.olUQyk.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2022-06-29-15-45-04.gh-issue-94329.olUQyk.rst b/Misc/NEWS.d/next/Core and Builtins/2022-06-29-15-45-04.gh-issue-94329.olUQyk.rst
new file mode 100644
index 0000000..afd31b6
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2022-06-29-15-45-04.gh-issue-94329.olUQyk.rst
@@ -0,0 +1,2 @@
+Compile and run code with unpacking of extremely large sequences (1000s of elements).
+Such code failed to compile. It now compiles and runs correctly.