summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorXiang Zhang <angwerzx@126.com>2017-03-21 03:13:42 (GMT)
committerGitHub <noreply@github.com>2017-03-21 03:13:42 (GMT)
commit4830f581af57dd305c02c1fd72299ecb5b090eca (patch)
treef2a13400bc9de4e5e24293ad5e388dca4eef959c /Misc
parent05f53735c8912f8df1077e897f052571e13c3496 (diff)
downloadcpython-4830f581af57dd305c02c1fd72299ecb5b090eca.zip
cpython-4830f581af57dd305c02c1fd72299ecb5b090eca.tar.gz
cpython-4830f581af57dd305c02c1fd72299ecb5b090eca.tar.bz2
bpo-29849: fix a memory leak in import_from (GH-712)
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 d8ea4c9..b86e5c9 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,8 @@ What's New in Python 3.7.0 alpha 1?
Core and Builtins
-----------------
+- bpo-29849: Fix a memory leak when an ImportError is raised during from import.
+
- bpo-28856: Fix an oversight that %b format for bytes should support objects
follow the buffer protocol.