summaryrefslogtreecommitdiffstats
path: root/Misc
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 /Misc
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 'Misc')
-rw-r--r--Misc/NEWS.d/next/C API/2020-05-14-00-36-19.bpo-39465.3a5g-X.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/C API/2020-05-14-00-36-19.bpo-39465.3a5g-X.rst b/Misc/NEWS.d/next/C API/2020-05-14-00-36-19.bpo-39465.3a5g-X.rst
new file mode 100644
index 0000000..a08c3da
--- /dev/null
+++ b/Misc/NEWS.d/next/C API/2020-05-14-00-36-19.bpo-39465.3a5g-X.rst
@@ -0,0 +1 @@
+Remove the ``_PyUnicode_ClearStaticStrings()`` function from the C API.