summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS6
1 files changed, 6 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 12633e2..60b5e86 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.