summaryrefslogtreecommitdiffstats
path: root/Misc
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 /Misc
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 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2019-08-31-13-36-09.bpo-37995.rS8HzT.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2019-08-31-13-36-09.bpo-37995.rS8HzT.rst b/Misc/NEWS.d/next/Library/2019-08-31-13-36-09.bpo-37995.rS8HzT.rst
new file mode 100644
index 0000000..19482b6
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2019-08-31-13-36-09.bpo-37995.rS8HzT.rst
@@ -0,0 +1,2 @@
+Added the *indent* option to :func:`ast.dump` which allows it to produce a
+multiline indented output.