summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d
diff options
context:
space:
mode:
authorBatuhan Taşkaya <47358913+isidentical@users.noreply.github.com>2020-03-04 16:16:47 (GMT)
committerGitHub <noreply@github.com>2020-03-04 16:16:46 (GMT)
commitd82e469048e0e034d8c0020cd33b733be1adf68b (patch)
tree169c91ab5f25d4f8e0b9ceb8a4c9800428cf82b7 /Misc/NEWS.d
parent702e09fd0ad72b248b5adfa0fcfdb58600be77f6 (diff)
downloadcpython-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 'Misc/NEWS.d')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2020-02-15-15-29-34.bpo-39639.3mqJjm.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2020-02-15-15-29-34.bpo-39639.3mqJjm.rst b/Misc/NEWS.d/next/Core and Builtins/2020-02-15-15-29-34.bpo-39639.3mqJjm.rst
new file mode 100644
index 0000000..7a54dd0
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2020-02-15-15-29-34.bpo-39639.3mqJjm.rst
@@ -0,0 +1 @@
+Remove ``ast.Suite`` node class because it's no longer used. Patch by Batuhan Taskaya.