summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBrandt Bucher <brandtbucher@microsoft.com>2022-04-01 10:42:46 (GMT)
committerGitHub <noreply@github.com>2022-04-01 10:42:46 (GMT)
commitbd2e47c8830d1b2869f2b4345945a5e0c3b4e3fb (patch)
treed8177a35651397bca64e3bd20a9b76451ef5d782 /Misc
parenta0ea7a116ce52a178c02d42b684089758bd7f355 (diff)
downloadcpython-bd2e47c8830d1b2869f2b4345945a5e0c3b4e3fb.zip
cpython-bd2e47c8830d1b2869f2b4345945a5e0c3b4e3fb.tar.gz
cpython-bd2e47c8830d1b2869f2b4345945a5e0c3b4e3fb.tar.bz2
bpo-46841: Avoid unnecessary allocations in code object comparisons (GH-32222)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2022-03-31-15-57-42.bpo-46841.U-25Z6.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2022-03-31-15-57-42.bpo-46841.U-25Z6.rst b/Misc/NEWS.d/next/Core and Builtins/2022-03-31-15-57-42.bpo-46841.U-25Z6.rst
new file mode 100644
index 0000000..42711cd
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2022-03-31-15-57-42.bpo-46841.U-25Z6.rst
@@ -0,0 +1 @@
+Avoid unnecessary allocations when comparing code objects.