summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2020-05-13 23:11:54 (GMT)
committerGitHub <noreply@github.com>2020-05-13 23:11:54 (GMT)
commitd6fb53fe42d83a10f1372dd92ffaa6a01d2feffb (patch)
treed8ad748d0965c536d7cf2139f6ca1e6cf25c6d75 /Doc/whatsnew
parentd72ea605218bbee6ae46648997d9bb76d0fba460 (diff)
downloadcpython-d6fb53fe42d83a10f1372dd92ffaa6a01d2feffb.zip
cpython-d6fb53fe42d83a10f1372dd92ffaa6a01d2feffb.tar.gz
cpython-d6fb53fe42d83a10f1372dd92ffaa6a01d2feffb.tar.bz2
bpo-39465: Remove _PyUnicode_ClearStaticStrings() from C API (GH-20078)
Remove the _PyUnicode_ClearStaticStrings() function from the C API. Make the function fully private (declare it with "static").
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r--Doc/whatsnew/3.9.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.9.rst b/Doc/whatsnew/3.9.rst
index c57d702..2fec790 100644
--- a/Doc/whatsnew/3.9.rst
+++ b/Doc/whatsnew/3.9.rst
@@ -964,3 +964,6 @@ Removed
* ``PyTuple_ClearFreeList()``
* ``PyUnicode_ClearFreeList()``: the Unicode free list has been removed in
Python 3.3.
+
+* Remove ``_PyUnicode_ClearStaticStrings()`` function.
+ (Contributed by Victor Stinner in :issue:`39465`.)