summaryrefslogtreecommitdiff
path: root/Include/internal/pycore_global_objects.h
diff options
context:
space:
mode:
authorKumar Aditya <59607654+kumaraditya303@users.noreply.github.com>2022-08-23 00:35:21 +0530
committerGitHub <noreply@github.com>2022-08-22 12:05:21 -0700
commit129998bd7b133defa37c7529bfad9052c0022b5c (patch)
tree7286184e1385b1049cf80d841a183f1cc2e0b8b4 /Include/internal/pycore_global_objects.h
parent079baee1962ff7c1f4b60f4dd4c803535ecbd18e (diff)
downloadcpython-git-129998bd7b133defa37c7529bfad9052c0022b5c.tar.gz
GH-96075: move interned dict under runtime state (GH-96077)
Diffstat (limited to 'Include/internal/pycore_global_objects.h')
-rw-r--r--Include/internal/pycore_global_objects.h2
1 files changed, 2 insertions, 0 deletions
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;
};