summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2019-11-23 01:30:32 (GMT)
committerGitHub <noreply@github.com>2019-11-23 01:30:32 (GMT)
commitd68b592dd67cb87c4fa862a8d3b3fd0a7d05e113 (patch)
tree8023c663b3c36f9026dbfb644953930117b46f4d /Doc/whatsnew
parent14a89c47983f2fb9e7fdf33c769e622eefd3a14a (diff)
downloadcpython-d68b592dd67cb87c4fa862a8d3b3fd0a7d05e113.zip
cpython-d68b592dd67cb87c4fa862a8d3b3fd0a7d05e113.tar.gz
cpython-d68b592dd67cb87c4fa862a8d3b3fd0a7d05e113.tar.bz2
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 'Doc/whatsnew')
-rw-r--r--Doc/whatsnew/3.9.rst4
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.9.rst b/Doc/whatsnew/3.9.rst
index 281173e..a3ad98d 100644
--- a/Doc/whatsnew/3.9.rst
+++ b/Doc/whatsnew/3.9.rst
@@ -235,6 +235,10 @@ Build and C API Changes
functions: the free lists of bound method objects have been removed.
(Contributed by Inada Naoki and Victor Stinner in :issue:`37340`.)
+* Remove ``PyUnicode_ClearFreeList()`` function: the Unicode free list has been
+ removed in Python 3.3.
+ (Contributed by Victor Stinner in :issue:`38896`.)
+
Deprecated
==========