diff options
author | Christian Heimes <christian@python.org> | 2021-03-08 11:25:48 +0100 |
---|---|---|
committer | Christian Heimes <christian@python.org> | 2021-03-08 11:30:31 +0100 |
commit | 35ebedca6fb072b25a177d5446f9a1bf176d581a (patch) | |
tree | ca05548088327a20584cb39996b250af5d31bb9e /README.md | |
parent | 1ac00c6dcb7696b960611ebdd80964907d7d07ae (diff) | |
download | defusedxml-git-35ebedca6fb072b25a177d5446f9a1bf176d581a.tar.gz |
Fix regression defusedxml.ElementTree.ParseError
The ``defusedxml.ElementTree.ParseError`` exception is now the same class object
as ``xml.etree.ElementTree.ParseError`` again. The regression was
introduced by new patching code as part of PR #60.
See: https://github.com/tiran/defusedxml/pull/60
Fixes: https://github.com/tiran/defusedxml/issues/63
Signed-off-by: Christian Heimes <christian@python.org>
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -720,6 +720,9 @@ See <https://www.python.org/psf/license> for licensing details. - Drop support for Python 2.7, 3.4, and 3.5. - Add `defusedxml.ElementTree.fromstringlist()` + - Fix regression `defusedxml.ElementTree.ParseError` (\#63) The + `ParseError` exception is now the same class object as + `xml.etree.ElementTree.ParseError` again. ## defusedxml 0.7.0 |