diff options
author | Victor Stinner <vstinner@python.org> | 2020-06-23 12:07:52 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-23 12:07:52 (GMT) |
commit | 261cfedf7657a515e04428bba58eba2a9bb88208 (patch) | |
tree | f242ee74773b9e46c63f0bf99e1ddc6b932a00b6 /Misc | |
parent | b4e85cadfbc2b1b24ec5f3159e351dbacedaa5e0 (diff) | |
download | cpython-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.rst | 10 |
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. |