diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-06-29 20:08:52 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-06-29 20:08:52 (GMT) |
commit | 4a01cab89894b157f282b2032862a278c9edb842 (patch) | |
tree | cf4d7a979b071d6c99ac909a4d47dd9b60a15aea /Misc/NEWS | |
parent | bc9e75ed023ff03f555682e57d25fee32e6548a0 (diff) | |
parent | 05744ac6e0948cbd6a50fc03a239a5402abceb14 (diff) | |
download | cpython-4a01cab89894b157f282b2032862a278c9edb842.zip cpython-4a01cab89894b157f282b2032862a278c9edb842.tar.gz cpython-4a01cab89894b157f282b2032862a278c9edb842.tar.bz2 |
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/NEWS')
-rw-r--r-- | Misc/NEWS | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -29,6 +29,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. |