summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBrandt Bucher <brandtbucher@microsoft.com>2023-08-09 19:14:50 (GMT)
committerGitHub <noreply@github.com>2023-08-09 19:14:50 (GMT)
commit326f0ba1c5dda1d9613dbba11ea2470654b0d9c8 (patch)
treeb027ca457364470c9b72194034bd939080416912 /Misc
parenta9caf9cf9041d6d0b69f8be0fd778dd1f9b50e74 (diff)
downloadcpython-326f0ba1c5dda1d9613dbba11ea2470654b0d9c8.zip
cpython-326f0ba1c5dda1d9613dbba11ea2470654b0d9c8.tar.gz
cpython-326f0ba1c5dda1d9613dbba11ea2470654b0d9c8.tar.bz2
GH-106485: Dematerialize instance dictionaries when possible (GH-106539)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2023-07-16-07-55-19.gh-issue-106485.wPb1bH.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2023-07-16-07-55-19.gh-issue-106485.wPb1bH.rst b/Misc/NEWS.d/next/Core and Builtins/2023-07-16-07-55-19.gh-issue-106485.wPb1bH.rst
new file mode 100644
index 0000000..1f80082
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2023-07-16-07-55-19.gh-issue-106485.wPb1bH.rst
@@ -0,0 +1,2 @@
+Reduce the number of materialized instances dictionaries by dematerializing
+them when possible.