summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorOren Milman <orenmn@gmail.com>2020-04-12 14:36:41 (GMT)
committerGitHub <noreply@github.com>2020-04-12 14:36:41 (GMT)
commit402e1cdb132f384e4dcde7a3d7ec7ea1fc7ab527 (patch)
tree9ed9857fa40f65bac510c2c04e7dc4a6a706c8c1 /Misc
parent63e5b59c06fc99f95d274e7f181296e094cc3ee7 (diff)
downloadcpython-402e1cdb132f384e4dcde7a3d7ec7ea1fc7ab527.zip
cpython-402e1cdb132f384e4dcde7a3d7ec7ea1fc7ab527.tar.gz
cpython-402e1cdb132f384e4dcde7a3d7ec7ea1fc7ab527.tar.bz2
bpo-31758: Prevent crashes when using an uninitialized _elementtree.XMLParser object (GH-3997)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2017-10-14-21-02-40.bpo-31758.563ZZb.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2017-10-14-21-02-40.bpo-31758.563ZZb.rst b/Misc/NEWS.d/next/Library/2017-10-14-21-02-40.bpo-31758.563ZZb.rst
new file mode 100644
index 0000000..92e55db
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2017-10-14-21-02-40.bpo-31758.563ZZb.rst
@@ -0,0 +1,2 @@
+Prevent crashes when using an uninitialized ``_elementtree.XMLParser``
+object. Patch by Oren Milman.