summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2017-03-30 07:32:19 (GMT)
committerGitHub <noreply@github.com>2017-03-30 07:32:19 (GMT)
commitc90ff1b78cb79bc3762184e03fa81f11984aaa45 (patch)
tree965529fae09748fded41c5edd6b5f34dec047b2f /Misc/NEWS
parent0fadf25e69f3de36b5deddecd9557addc8142fdf (diff)
downloadcpython-c90ff1b78cb79bc3762184e03fa81f11984aaa45.zip
cpython-c90ff1b78cb79bc3762184e03fa81f11984aaa45.tar.gz
cpython-c90ff1b78cb79bc3762184e03fa81f11984aaa45.tar.bz2
bpo-27863: Fixed multiple crashes in ElementTree. (#765) (#904)
(cherry picked from commit 576def096ec7b64814e038f03290031f172886c3)
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 9a22010..749f3e3 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -46,6 +46,9 @@ Extension Modules
Library
-------
+- bpo-27863: Fixed multiple crashes in ElementTree caused by race conditions
+ and wrong types.
+
- bpo-28699: Fixed a bug in pools in multiprocessing.pool that raising an
exception at the very first of an iterable may swallow the exception or
make the program hang. Patch by Davin Potts and Xiang Zhang.