summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2019-09-09 16:33:13 (GMT)
committerGitHub <noreply@github.com>2019-09-09 16:33:13 (GMT)
commit850573b836d5b82d1a1ebe75a635aaa0a3dff997 (patch)
treeeb7aa5da66e0dfa0520104fac656ae93f3a12a34 /Doc/whatsnew
parent92709a263e9cec0bc646ccc1ea051fc528800d8d (diff)
downloadcpython-850573b836d5b82d1a1ebe75a635aaa0a3dff997.zip
cpython-850573b836d5b82d1a1ebe75a635aaa0a3dff997.tar.gz
cpython-850573b836d5b82d1a1ebe75a635aaa0a3dff997.tar.bz2
bpo-37995: Add an option to ast.dump() to produce a multiline output. (GH-15631)
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r--Doc/whatsnew/3.9.rst8
1 files changed, 8 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.9.rst b/Doc/whatsnew/3.9.rst
index 5670cb5..deaefc7 100644
--- a/Doc/whatsnew/3.9.rst
+++ b/Doc/whatsnew/3.9.rst
@@ -109,6 +109,14 @@ New Modules
Improved Modules
================
+ast
+---
+
+Added the *indent* option to :func:`~ast.dump` which allows it to produce a
+multiline indented output.
+(Contributed by Serhiy Storchaka in :issue:`37995`.)
+
+
threading
---------