diff options
author | Victor Stinner <vstinner@python.org> | 2019-11-23 02:30:32 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-23 02:30:32 +0100 |
commit | d68b592dd67cb87c4fa862a8d3b3fd0a7d05e113 (patch) | |
tree | 8023c663b3c36f9026dbfb644953930117b46f4d /Modules/gcmodule.c | |
parent | 14a89c47983f2fb9e7fdf33c769e622eefd3a14a (diff) | |
download | cpython-git-d68b592dd67cb87c4fa862a8d3b3fd0a7d05e113.tar.gz |
bpo-38896: Remove PyUnicode_ClearFreeList() function (GH-17354)
Remove PyUnicode_ClearFreeList() function: the Unicode free list has
been removed in Python 3.3.
Diffstat (limited to 'Modules/gcmodule.c')
-rw-r--r-- | Modules/gcmodule.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Modules/gcmodule.c b/Modules/gcmodule.c index d232179a11..64afe831c8 100644 --- a/Modules/gcmodule.c +++ b/Modules/gcmodule.c @@ -1031,7 +1031,6 @@ clear_freelists(void) { (void)PyFrame_ClearFreeList(); (void)PyTuple_ClearFreeList(); - (void)PyUnicode_ClearFreeList(); (void)PyFloat_ClearFreeList(); (void)PyList_ClearFreeList(); (void)PyDict_ClearFreeList(); |