Skip to content

Commit 26fe5d5

Browse files
move dicts of interned strings to appropriate section in header
1 parent 0c6d450 commit 26fe5d5

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

Objects/unicodeobject.c

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -207,13 +207,6 @@ _PyUnicode_GetEmpty(void)
207207
return &_Py_STR(empty);
208208
}
209209

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-
}
217210

218211
/* Get number of all interned strings for the current interpreter. */
219212
Py_ssize_t

0 commit comments

Comments
 (0)