We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0c6d450 commit 26fe5d5Copy full SHA for 26fe5d5
Objects/unicodeobject.c
@@ -207,13 +207,6 @@ _PyUnicode_GetEmpty(void)
207
return &_Py_STR(empty);
208
}
209
210
-/* This dictionary holds per-interpreter interned strings.
211
- * See InternalDocs/string_interning.md for details.
212
- */
213
-static inline PyObject *get_interned_dict(PyInterpreterState *interp)
214
-{
215
- return _Py_INTERP_CACHED_OBJECT(interp, interned_strings);
216
-}
217
218
/* Get number of all interned strings for the current interpreter. */
219
Py_ssize_t
0 commit comments