[Python-checkins] bpo-41808: Add What's New 3.9 entry missing from master (#22294)

Terry Jan Reedy webhook-mailer at python.org
Thu Sep 17 21:57:13 EDT 2020


https://github.com/python/cpython/commit/5a8364780b7e881385f6fabcf072d599e80f51b8
commit: 5a8364780b7e881385f6fabcf072d599e80f51b8
branch: master
author: Terry Jan Reedy <tjreedy at udel.edu>
committer: GitHub <noreply at github.com>
date: 2020-09-17T21:56:58-04:00
summary:

bpo-41808: Add What's New 3.9 entry missing from master (#22294)

Entry was added by bpo-40939, #21012 and #21039.

files:
M Doc/whatsnew/3.9.rst

diff --git a/Doc/whatsnew/3.9.rst b/Doc/whatsnew/3.9.rst
index e1ea799b76296..b3cc84d07f38d 100644
--- a/Doc/whatsnew/3.9.rst
+++ b/Doc/whatsnew/3.9.rst
@@ -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



More information about the Python-checkins mailing list