From 129998bd7b133defa37c7529bfad9052c0022b5c Mon Sep 17 00:00:00 2001 From: Kumar Aditya <59607654+kumaraditya303@users.noreply.github.com> Date: Tue, 23 Aug 2022 00:35:21 +0530 Subject: GH-96075: move interned dict under runtime state (GH-96077) --- Include/internal/pycore_global_objects.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'Include/internal/pycore_global_objects.h') diff --git a/Include/internal/pycore_global_objects.h b/Include/internal/pycore_global_objects.h index 98673d4efc..82e89db7b1 100644 --- a/Include/internal/pycore_global_objects.h +++ b/Include/internal/pycore_global_objects.h @@ -45,6 +45,8 @@ struct _Py_global_objects { _PyGC_Head_UNUSED _tuple_empty_gc_not_used; PyTupleObject tuple_empty; } singletons; + + PyObject *interned; }; -- cgit v1.2.1