aboutsummaryrefslogtreecommitdiff
path: root/Misc
diff options
context:
space:
mode:
authorBrandt Bucher <brandt@python.org>2022-02-09 15:15:36 -0800
committerGitHub <noreply@github.com>2022-02-09 15:15:36 -0800
commit78ae4cc6dc949e8bc39fab25fea5efe983dc0ad1 (patch)
treee81f0366f8d8524947e6a5037fc946b98473779c /Misc
parent5a3f97291eea96037cceee097ebc00bba44bc9ed (diff)
downloadcpython3-78ae4cc6dc949e8bc39fab25fea5efe983dc0ad1.tar.gz
bpo-46528: Attempt SWAPs at compile-time (GH-30970)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2022-01-27-14-20-18.bpo-45828.kzk4fl.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2022-01-27-14-20-18.bpo-45828.kzk4fl.rst b/Misc/NEWS.d/next/Core and Builtins/2022-01-27-14-20-18.bpo-45828.kzk4fl.rst
new file mode 100644
index 0000000000..687fef035d
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2022-01-27-14-20-18.bpo-45828.kzk4fl.rst
@@ -0,0 +1,2 @@
+The bytecode compiler now attempts to apply runtime stack manipulations at
+compile-time (whenever it is feasible to do so).