diff options
author | Batuhan Taşkaya <47358913+isidentical@users.noreply.github.com> | 2020-03-04 16:16:47 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-04 16:16:46 (GMT) |
commit | d82e469048e0e034d8c0020cd33b733be1adf68b (patch) | |
tree | 169c91ab5f25d4f8e0b9ceb8a4c9800428cf82b7 /Doc | |
parent | 702e09fd0ad72b248b5adfa0fcfdb58600be77f6 (diff) | |
download | cpython-d82e469048e0e034d8c0020cd33b733be1adf68b.zip cpython-d82e469048e0e034d8c0020cd33b733be1adf68b.tar.gz cpython-d82e469048e0e034d8c0020cd33b733be1adf68b.tar.bz2 |
bpo-39639: Remove the AST "Suite" node and associated code (GH-18513)
The AST "Suite" node is no longer used and it can be removed from the ASDL definition and related structures (compiler, visitors, ...).
Co-Authored-By: Victor Stinner <vstinner@python.org>
Co-authored-by: Brett Cannon <54418+brettcannon@users.noreply.github.com>
Co-authored-by: Pablo Galindo <Pablogsal@gmail.com>
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/whatsnew/3.9.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.9.rst b/Doc/whatsnew/3.9.rst index f15805c..d072b8d 100644 --- a/Doc/whatsnew/3.9.rst +++ b/Doc/whatsnew/3.9.rst @@ -611,6 +611,9 @@ Removed defining ``COUNT_ALLOCS`` macro. (Contributed by Victor Stinner in :issue:`39489`.) +* The ``ast.Suite`` node class has been removed due to no longer being needed. + (Contributed by Batuhan Taskaya in :issue:`39639`.) + Porting to Python 3.9 ===================== |