summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2019-08-29 06:30:23 (GMT)
committerGitHub <noreply@github.com>2019-08-29 06:30:23 (GMT)
commite64f948e762a6b9fd02e2902ccf42438df6fcb61 (patch)
tree833c88bf7abd2b0ded10bd61468c0d238dedf514 /Misc
parentb235a1b47394eedc5f8ea4cf214f56c4c6932e59 (diff)
downloadcpython-e64f948e762a6b9fd02e2902ccf42438df6fcb61.zip
cpython-e64f948e762a6b9fd02e2902ccf42438df6fcb61.tar.gz
cpython-e64f948e762a6b9fd02e2902ccf42438df6fcb61.tar.bz2
bpo-37950: Fix ast.dump() when call with incompletely initialized node. (GH-15510)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2019-08-26-10-45-51.bpo-37950.-K1IKT.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2019-08-26-10-45-51.bpo-37950.-K1IKT.rst b/Misc/NEWS.d/next/Library/2019-08-26-10-45-51.bpo-37950.-K1IKT.rst
new file mode 100644
index 0000000..ded80d3
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2019-08-26-10-45-51.bpo-37950.-K1IKT.rst
@@ -0,0 +1 @@
+Fix :func:`ast.dump` when call with incompletely initialized node.