diff options
author | Oren Milman <orenmn@gmail.com> | 2020-04-12 14:36:41 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-12 14:36:41 (GMT) |
commit | 402e1cdb132f384e4dcde7a3d7ec7ea1fc7ab527 (patch) | |
tree | 9ed9857fa40f65bac510c2c04e7dc4a6a706c8c1 /Misc | |
parent | 63e5b59c06fc99f95d274e7f181296e094cc3ee7 (diff) | |
download | cpython-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.rst | 2 |
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. |