summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2020-06-23 12:07:52 (GMT)
committerGitHub <noreply@github.com>2020-06-23 12:07:52 (GMT)
commit261cfedf7657a515e04428bba58eba2a9bb88208 (patch)
treef242ee74773b9e46c63f0bf99e1ddc6b932a00b6 /Misc
parentb4e85cadfbc2b1b24ec5f3159e351dbacedaa5e0 (diff)
downloadcpython-261cfedf7657a515e04428bba58eba2a9bb88208.zip
cpython-261cfedf7657a515e04428bba58eba2a9bb88208.tar.gz
cpython-261cfedf7657a515e04428bba58eba2a9bb88208.tar.bz2
bpo-40521: Make the empty frozenset per interpreter (GH-21068)
Each interpreter now has its own empty frozenset singleton.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2020-05-20-01-17-34.bpo-40521.wvAehI.rst10
1 files changed, 5 insertions, 5 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2020-05-20-01-17-34.bpo-40521.wvAehI.rst b/Misc/NEWS.d/next/Core and Builtins/2020-05-20-01-17-34.bpo-40521.wvAehI.rst
index 3406ca8..24fd437 100644
--- a/Misc/NEWS.d/next/Core and Builtins/2020-05-20-01-17-34.bpo-40521.wvAehI.rst
+++ b/Misc/NEWS.d/next/Core and Builtins/2020-05-20-01-17-34.bpo-40521.wvAehI.rst
@@ -1,5 +1,5 @@
-The tuple free lists, the empty tuple singleton, the list free list, the float
-free list, the slice cache, the dict free lists, the frame free list, the
-asynchronous generator free lists, and the context free list are no longer
-shared by all interpreters: each interpreter now its has own free lists and
-caches.
+The tuple free lists, the empty tuple singleton, the list free list, the empty
+frozenset singleton, the float free list, the slice cache, the dict free lists,
+the frame free list, the asynchronous generator free lists, and the context
+free list are no longer shared by all interpreters: each interpreter now its
+has own free lists and caches.