diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-06-29 19:35:58 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-06-29 19:35:58 (GMT) |
commit | 05744ac6e0948cbd6a50fc03a239a5402abceb14 (patch) | |
tree | 9b6d91833c550609c64c489d649d56a326d1c3a4 /Misc | |
parent | 7b6e3b91f54e8fafbb1565a7d0999dec4fca783f (diff) | |
download | cpython-05744ac6e0948cbd6a50fc03a239a5402abceb14.zip cpython-05744ac6e0948cbd6a50fc03a239a5402abceb14.tar.gz cpython-05744ac6e0948cbd6a50fc03a239a5402abceb14.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')
-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. |