summaryrefslogtreecommitdiffstats
path: root/Include
diff options
context:
space:
mode:
authorKumar Aditya <59607654+kumaraditya303@users.noreply.github.com>2022-08-22 19:05:21 (GMT)
committerGitHub <noreply@github.com>2022-08-22 19:05:21 (GMT)
commit129998bd7b133defa37c7529bfad9052c0022b5c (patch)
tree7286184e1385b1049cf80d841a183f1cc2e0b8b4 /Include
parent079baee1962ff7c1f4b60f4dd4c803535ecbd18e (diff)
downloadcpython-129998bd7b133defa37c7529bfad9052c0022b5c.zip
cpython-129998bd7b133defa37c7529bfad9052c0022b5c.tar.gz
cpython-129998bd7b133defa37c7529bfad9052c0022b5c.tar.bz2
GH-96075: move interned dict under runtime state (GH-96077)
Diffstat (limited to 'Include')
-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 98673d4..82e89db 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;
};