diff options
author | Jeremy Kloth <jeremy.kloth@gmail.com> | 2022-03-22 12:53:51 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-22 12:53:51 (GMT) |
commit | 88872a29f19092d2fde27365af230abd6d301941 (patch) | |
tree | c3b3f338395d4f3015cf1e9c37689a30019126b1 /Include | |
parent | 7d810b6a4eab6eba689acc5bb05f85515478d690 (diff) | |
download | cpython-88872a29f19092d2fde27365af230abd6d301941.zip cpython-88872a29f19092d2fde27365af230abd6d301941.tar.gz cpython-88872a29f19092d2fde27365af230abd6d301941.tar.bz2 |
bpo-47084: Clear Unicode cached representations on finalization (GH-32032)
Diffstat (limited to 'Include')
-rw-r--r-- | Include/internal/pycore_unicodeobject.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Include/internal/pycore_unicodeobject.h b/Include/internal/pycore_unicodeobject.h index 4394ce9..c7f0605 100644 --- a/Include/internal/pycore_unicodeobject.h +++ b/Include/internal/pycore_unicodeobject.h @@ -18,6 +18,7 @@ extern PyStatus _PyUnicode_InitGlobalObjects(PyInterpreterState *); extern PyStatus _PyUnicode_InitTypes(PyInterpreterState *); extern void _PyUnicode_Fini(PyInterpreterState *); extern void _PyUnicode_FiniTypes(PyInterpreterState *); +extern void _PyStaticUnicode_Dealloc(PyObject *); /* other API */ |