summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2017-03-19 17:25:29 (GMT)
committerGitHub <noreply@github.com>2017-03-19 17:25:29 (GMT)
commita5af6e1af77ee0f9294c5776478a9c24d9fbab94 (patch)
treef4c9791260db737fea9da4f415d9facad9c96ae1 /Misc
parent77ed11552da3e01dd235b7d68988076866b1f604 (diff)
downloadcpython-a5af6e1af77ee0f9294c5776478a9c24d9fbab94.zip
cpython-a5af6e1af77ee0f9294c5776478a9c24d9fbab94.tar.gz
cpython-a5af6e1af77ee0f9294c5776478a9c24d9fbab94.tar.bz2
bpo-25455: Fixed crashes in repr of recursive buffered file-like objects. (#514)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index b7990c6..f317527 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -281,6 +281,8 @@ Extension Modules
Library
-------
+- bpo-25455: Fixed crashes in repr of recursive buffered file-like objects.
+
- bpo-29800: Fix crashes in partial.__repr__ if the keys of partial.keywords
are not strings. Patch by Michael Seifert.