summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew/3.10.rst
diff options
context:
space:
mode:
Diffstat (limited to 'Doc/whatsnew/3.10.rst')
-rw-r--r--Doc/whatsnew/3.10.rst16
1 files changed, 16 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.10.rst b/Doc/whatsnew/3.10.rst
index 362ce8f..02fe033 100644
--- a/Doc/whatsnew/3.10.rst
+++ b/Doc/whatsnew/3.10.rst
@@ -1364,3 +1364,19 @@ Removed
AST object (``mod_ty`` type) with the public C API. The function was already
excluded from the limited C API (:pep:`384`).
(Contributed by Victor Stinner in :issue:`43244`.)
+
+* Remove the ``symtable.h`` header file and the undocumented functions:
+
+ * ``PyST_GetScope()``
+ * ``PySymtable_Build()``
+ * ``PySymtable_BuildObject()``
+ * ``PySymtable_Free()``
+ * ``Py_SymtableString()``
+ * ``Py_SymtableStringObject()``
+
+ The ``Py_SymtableString()`` function was part the stable ABI by mistake but
+ it could not be used, because the ``symtable.h`` header file was excluded
+ from the limited C API.
+
+ The Python :mod:`symtable` module remains available and is unchanged.
+ (Contributed by Victor Stinner in :issue:`43244`.)