diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-06-29 22:35:58 +0300 |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-06-29 22:35:58 +0300 |
commit | 68a5211f9504cd9478cfafad81d7a959d8cffe05 (patch) | |
tree | 038d0d43d10912a10964214285bab3243a03970c /Misc | |
parent | 3a6c91add7604a77a27c51165dacf7d114200bda (diff) | |
download | cpython-68a5211f9504cd9478cfafad81d7a959d8cffe05.tar.gz |
Issue #19176: Fixed doctype() related bugs in C implementation of ElementTree.
A deprecation warning no longer issued by XMLParser subclass with default
doctype() method. Direct call of doctype() now issues a warning. Parser's
doctype() now is not called if target's doctype() is called. Based on patch
by Martin Panter.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -64,6 +64,12 @@ Core and Builtins Library ------- +- Issue #19176: Fixed doctype() related bugs in C implementation of ElementTree. + A deprecation warning no longer issued by XMLParser subclass with default + doctype() method. Direct call of doctype() now issues a warning. Parser's + doctype() now is not called if target's doctype() is called. Based on patch + by Martin Panter. + - Issue #20387: Restore semantic round-trip correctness in tokenize/untokenize for tab-indented blocks. |