diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2018-12-18 20:29:14 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-18 20:29:14 (GMT) |
commit | d2a75c67830d7c9f59e4e9b60f36974234c829ef (patch) | |
tree | 4e6f90c9c9904f52c089610f21b4151a33714716 /Misc | |
parent | 60875db2f67815d7d181c552bfac59e8c97619e3 (diff) | |
download | cpython-d2a75c67830d7c9f59e4e9b60f36974234c829ef.zip cpython-d2a75c67830d7c9f59e4e9b60f36974234c829ef.tar.gz cpython-d2a75c67830d7c9f59e4e9b60f36974234c829ef.tar.bz2 |
bpo-35502: Fix reference leaks in ElementTree.TreeBuilder. (GH-11170)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2018-12-14-23-56-48.bpo-35502.gLHuFS.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2018-12-14-23-56-48.bpo-35502.gLHuFS.rst b/Misc/NEWS.d/next/Library/2018-12-14-23-56-48.bpo-35502.gLHuFS.rst new file mode 100644 index 0000000..0fcea8d --- /dev/null +++ b/Misc/NEWS.d/next/Library/2018-12-14-23-56-48.bpo-35502.gLHuFS.rst @@ -0,0 +1,3 @@ +Fixed reference leaks in :class:`xml.etree.ElementTree.TreeBuilder` in case +of unfinished building of the tree (in particular when an error was raised +during parsing XML). |