]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-41808: Add What's New 3.9 entry missing from master (#22294)
authorTerry Jan Reedy <tjreedy@udel.edu>
Fri, 18 Sep 2020 01:56:58 +0000 (21:56 -0400)
committerGitHub <noreply@github.com>
Fri, 18 Sep 2020 01:56:58 +0000 (21:56 -0400)
Entry was added by bpo-40939, #21012 and #21039.

Doc/whatsnew/3.9.rst

index e1ea799b76296da05ff0f3b546f25848ad159b3a..b3cc84d07f38d5ab1825eb79de49941e601287bf 100644 (file)
@@ -708,6 +708,11 @@ Deprecated
   users can leverage the Abstract Syntax Tree (AST) generation and compilation
   stage, using the :mod:`ast` module.
 
+* The Public C API functions :c:func:`PyParser_SimpleParseStringFlags`,
+  :c:func:`PyParser_SimpleParseStringFlagsFilename`,
+  :c:func:`PyParser_SimpleParseFileFlags` and :c:func:`PyNode_Compile`
+  are deprecated and will be removed in Python 3.10 together with the old parser.
+
 * Using :data:`NotImplemented` in a boolean context has been deprecated,
   as it is almost exclusively the result of incorrect rich comparator
   implementations. It will be made a :exc:`TypeError` in a future version