diff options
author | Eric Snow <ericsnowcurrently@gmail.com> | 2023-03-28 18:52:28 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-28 18:52:28 (GMT) |
commit | ba65a065cf07a7a9f53be61057a090f7311a5ad7 (patch) | |
tree | 279e23bf7b8b1cfbf9a1a976a086ca129bbbe5cf /Include/internal/pycore_runtime.h | |
parent | 7703def37e4fa7d25c3d23756de8f527daa4e165 (diff) | |
download | cpython-ba65a065cf07a7a9f53be61057a090f7311a5ad7.zip cpython-ba65a065cf07a7a9f53be61057a090f7311a5ad7.tar.gz cpython-ba65a065cf07a7a9f53be61057a090f7311a5ad7.tar.bz2 |
gh-100227: Move the Dict of Interned Strings to PyInterpreterState (gh-102339)
We can revisit the options for keeping it global later, if desired. For now the approach seems quite complex, so we've gone with the simpler isolation solution in the meantime.
https://github.com/python/cpython/issues/100227
Diffstat (limited to 'Include/internal/pycore_runtime.h')
-rw-r--r-- | Include/internal/pycore_runtime.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Include/internal/pycore_runtime.h b/Include/internal/pycore_runtime.h index de757df..8877b28 100644 --- a/Include/internal/pycore_runtime.h +++ b/Include/internal/pycore_runtime.h @@ -163,7 +163,6 @@ typedef struct pyruntimestate { } types; /* All the objects that are shared by the runtime's interpreters. */ - struct _Py_cached_objects cached_objects; struct _Py_static_objects static_objects; /* The following fields are here to avoid allocation during init. |