summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorMichael Seifert <michaelseifert04@yahoo.de>2017-03-15 07:42:30 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2017-03-15 07:42:30 (GMT)
commit0641ada9b78b6a06f539d4bde42c1ad1b90579a7 (patch)
tree38ae92908b95765174ccf0db109b88472700bac3 /Misc/NEWS
parent59883bb25263318b25a817cc6e5af2b1a1246443 (diff)
downloadcpython-0641ada9b78b6a06f539d4bde42c1ad1b90579a7.zip
cpython-0641ada9b78b6a06f539d4bde42c1ad1b90579a7.tar.gz
cpython-0641ada9b78b6a06f539d4bde42c1ad1b90579a7.tar.bz2
bpo-29800: Fix crashes in partial.__repr__ if the keys of partial.keywords are not strings (#649) (#672)
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 f12b5e6..40d87e2 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -43,6 +43,9 @@ Extension Modules
Library
-------
+- bpo-29800: Fix crashes in partial.__repr__ if the keys of partial.keywords
+ are not strings. Patch by Michael Seifert.
+
- bpo-29742: get_extra_info() raises exception if get called on closed ssl transport.
Patch by Nikolay Kim.