mirror of
https://github.com/python/cpython.git
synced 2025-12-31 04:23:37 +00:00
9 lines
321 B
ReStructuredText
9 lines
321 B
ReStructuredText
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, empty Unicode string,
|
|
single byte character.
|
|
* Slice cache.
|
|
|
|
They are no longer shared by all interpreters.
|