summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d/next
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2018-04-18 22:55:37 (GMT)
committerGitHub <noreply@github.com>2018-04-18 22:55:37 (GMT)
commite5362eaa75a154c6e91c5b1c47719d0a0f5ca48b (patch)
tree213789668d45f15b8bbff0e16aea5dfe6874dca1 /Misc/NEWS.d/next
parentc127a86e1862df88ec6f9d15b79c627fc616766e (diff)
downloadcpython-e5362eaa75a154c6e91c5b1c47719d0a0f5ca48b.zip
cpython-e5362eaa75a154c6e91c5b1c47719d0a0f5ca48b.tar.gz
cpython-e5362eaa75a154c6e91c5b1c47719d0a0f5ca48b.tar.bz2
bpo-33308: Fix a crash in the parser module when convert an ST object. (#6519)
Converting with line_info=False and col_info=True crashed before.
Diffstat (limited to 'Misc/NEWS.d/next')
-rw-r--r--Misc/NEWS.d/next/Library/2018-04-18-19-12-25.bpo-33308.fW75xi.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2018-04-18-19-12-25.bpo-33308.fW75xi.rst b/Misc/NEWS.d/next/Library/2018-04-18-19-12-25.bpo-33308.fW75xi.rst
new file mode 100644
index 0000000..586004a
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2018-04-18-19-12-25.bpo-33308.fW75xi.rst
@@ -0,0 +1,2 @@
+Fixed a crash in the :mod:`parser` module when converting an ST object to a
+tree of tuples or lists with ``line_info=False`` and ``col_info=True``.