summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2017-03-19 22:51:16 (GMT)
committerGitHub <noreply@github.com>2017-03-19 22:51:16 (GMT)
commit08612ed6a91003cdba7617dee7787c26495c50d9 (patch)
tree0fb7999cb2703c4eee4462bd5d8addcebc5f741c /Misc/NEWS
parentbb67f10179011c50805a942cb6f2701c84854888 (diff)
downloadcpython-08612ed6a91003cdba7617dee7787c26495c50d9.zip
cpython-08612ed6a91003cdba7617dee7787c26495c50d9.tar.gz
cpython-08612ed6a91003cdba7617dee7787c26495c50d9.tar.bz2
bpo-25455: Fixed crashes in repr of recursive buffered file-like objects. (#514) (#727)
(cherry picked from commit a5af6e1af77ee0f9294c5776478a9c24d9fbab94)
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 40d87e2..1005bc5 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -43,6 +43,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.