diff options
author | Victor Stinner <vstinner@python.org> | 2020-06-23 22:10:40 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-23 22:10:40 (GMT) |
commit | f363d0a6e9cfa50677a6de203735fbc0d06c2f49 (patch) | |
tree | 9092c9d82a215dcfce789e4ad81ac2b4e8be2fed /Misc | |
parent | d051801052211b533c46a593b1c1bccf649a171c (diff) | |
download | cpython-f363d0a6e9cfa50677a6de203735fbc0d06c2f49.zip cpython-f363d0a6e9cfa50677a6de203735fbc0d06c2f49.tar.gz cpython-f363d0a6e9cfa50677a6de203735fbc0d06c2f49.tar.bz2 |
bpo-40521: Make empty Unicode string per interpreter (GH-21096)
Each interpreter now has its own empty Unicode string 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 | 2 |
1 files changed, 1 insertions, 1 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 9b94bcc..e970551 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 @@ -2,7 +2,7 @@ Each interpreter now its has own free lists, singletons and caches: * Free lists: float, tuple, list, dict, frame, context, asynchronous generator, MemoryError. -* Singletons: empty tuple, empty bytes string, +* Singletons: empty tuple, empty bytes string, empty Unicode string, single byte character. * Slice cache. |