summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2020-09-18 01:56:58 (GMT)
committerGitHub <noreply@github.com>2020-09-18 01:56:58 (GMT)
commit5a8364780b7e881385f6fabcf072d599e80f51b8 (patch)
tree26c3b026ae8fc86e2199aa55a13c307b2a0b2123
parenta33f2c2bae759fc9d06e1c032fd2026135f2df45 (diff)
downloadcpython-5a8364780b7e881385f6fabcf072d599e80f51b8.zip
cpython-5a8364780b7e881385f6fabcf072d599e80f51b8.tar.gz
cpython-5a8364780b7e881385f6fabcf072d599e80f51b8.tar.bz2
bpo-41808: Add What's New 3.9 entry missing from master (#22294)
Entry was added by bpo-40939, #21012 and #21039.
-rw-r--r--Doc/whatsnew/3.9.rst5
1 files changed, 5 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.9.rst b/Doc/whatsnew/3.9.rst
index e1ea799..b3cc84d 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