summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2017-03-30 15:12:06 (GMT)
committerGitHub <noreply@github.com>2017-03-30 15:12:06 (GMT)
commit762ec97ea68a1126b8855996c61fa8239dc9fff7 (patch)
tree8addf50d8a5ed50492790532396b08d1d25737bd /Misc
parent722a3af092b94983aa26f5e591fb1b45e2c2a0ff (diff)
downloadcpython-762ec97ea68a1126b8855996c61fa8239dc9fff7.zip
cpython-762ec97ea68a1126b8855996c61fa8239dc9fff7.tar.gz
cpython-762ec97ea68a1126b8855996c61fa8239dc9fff7.tar.bz2
bpo-29204: Emit warnings for already deprecated ElementTree features. (#773)
Element.getiterator() and the html parameter of XMLParser() were deprecated only in the documentation (since Python 3.2 and 3.4 correspondintly). Now using them emits a deprecation warning. * Don’t need check_warnings any more.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 5fff581..87b4782 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -298,6 +298,10 @@ Extension Modules
Library
-------
+- bpo-29204: Element.getiterator() and the html parameter of XMLParser() were
+ deprecated only in the documentation (since Python 3.2 and 3.4 correspondintly).
+ Now using them emits a deprecation warning.
+
- bpo-27863: Fixed multiple crashes in ElementTree caused by race conditions
and wrong types.