summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew/3.9.rst
diff options
context:
space:
mode:
authorBatuhan Taşkaya <47358913+isidentical@users.noreply.github.com>2020-03-16 08:12:53 (GMT)
committerGitHub <noreply@github.com>2020-03-16 08:12:53 (GMT)
commit4ab362cec6dc68c798b3e354f687cf39e207b9a9 (patch)
treefd3e04e72101bda5ade2fc0ee4437974a53daa9b /Doc/whatsnew/3.9.rst
parent5b66ec166b81c8a77286da2c0d17be3579c3069a (diff)
downloadcpython-4ab362cec6dc68c798b3e354f687cf39e207b9a9.zip
cpython-4ab362cec6dc68c798b3e354f687cf39e207b9a9.tar.gz
cpython-4ab362cec6dc68c798b3e354f687cf39e207b9a9.tar.bz2
bpo-39638: Keep ASDL signatures in the AST nodes (GH-18515)
Diffstat (limited to 'Doc/whatsnew/3.9.rst')
-rw-r--r--Doc/whatsnew/3.9.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.9.rst b/Doc/whatsnew/3.9.rst
index 1d462c2..8c087c6 100644
--- a/Doc/whatsnew/3.9.rst
+++ b/Doc/whatsnew/3.9.rst
@@ -164,6 +164,9 @@ be used to unparse an :class:`ast.AST` object and produce a string with code
that would produce an equivalent :class:`ast.AST` object when parsed.
(Contributed by Pablo Galindo and Batuhan Taskaya in :issue:`38870`.)
+Added docstrings to AST nodes that contains the ASDL signature used to
+construct that node. (Contributed by Batuhan Taskaya in :issue:`39638`.)
+
asyncio
-------