summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2017-05-20 17:05:27 (GMT)
committerGitHub <noreply@github.com>2017-05-20 17:05:27 (GMT)
commite6a0b5982973e64b9fa28e5e3e54eb8c47882780 (patch)
treea6c1100a348da828785bebe5d921a0abfc5b9330 /Misc
parente9f9b042781e3cb480315860bcdf7b7d22cba0f8 (diff)
downloadcpython-e6a0b5982973e64b9fa28e5e3e54eb8c47882780.zip
cpython-e6a0b5982973e64b9fa28e5e3e54eb8c47882780.tar.gz
cpython-e6a0b5982973e64b9fa28e5e3e54eb8c47882780.tar.bz2
[2.7] bpo-27945: Fixed various segfaults with dict. (GH-1657) (#1681)
Based on patches by Duane Griffin and Tim Mitchell. (cherry picked from commit 753bca3934a7618a4fa96e107ad1c5c18633a683)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS4
2 files changed, 5 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index 01bcd3b..10b5d7c 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -500,6 +500,7 @@ Hans de Graaff
Tim Graham
Nathaniel Gray
Eddy De Greef
+Duane Griffin
Grant Griffin
Andrea Griffini
Duncan Grisby
diff --git a/Misc/NEWS b/Misc/NEWS
index ebe9d2c..254bb52 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,10 @@ What's New in Python 2.7.14?
Core and Builtins
-----------------
+- bpo-27945: Fixed various segfaults with dict when input collections are
+ mutated during searching, inserting or comparing. Based on patches by
+ Duane Griffin and Tim Mitchell.
+
- bpo-25794: Fixed type.__setattr__() and type.__delattr__() for
non-interned or unicode attribute names. Based on patch by Eryk Sun.