summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorIrit Katriel <iritkatriel@yahoo.com>2020-05-18 18:14:12 (GMT)
committerGitHub <noreply@github.com>2020-05-18 18:14:12 (GMT)
commite6578a226d8a8a13d1062d154fad0fef28ee2416 (patch)
tree49fc3caf99ad4a057ebea2d2be2c6e4d9727ede6 /Misc
parent63b8e0cba3d43e53a8dd8878ee1443c8427f462d (diff)
downloadcpython-e6578a226d8a8a13d1062d154fad0fef28ee2416.zip
cpython-e6578a226d8a8a13d1062d154fad0fef28ee2416.tar.gz
cpython-e6578a226d8a8a13d1062d154fad0fef28ee2416.tar.bz2
bpo-40662: Fixed ast.get_source_segment for ast nodes that have incomplete location information (GH-20157)
Co-authored-by: Pablo Galindo <Pablogsal@gmail.com>
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2020-05-18-12-56-45.bpo-40662.dfornR.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2020-05-18-12-56-45.bpo-40662.dfornR.rst b/Misc/NEWS.d/next/Library/2020-05-18-12-56-45.bpo-40662.dfornR.rst
new file mode 100644
index 0000000..a960c3f
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2020-05-18-12-56-45.bpo-40662.dfornR.rst
@@ -0,0 +1 @@
+Fixed :func:`ast.get_source_segment` for ast nodes that have incomplete location information. Patch by Irit Katriel.