diff options
author | Xiang Zhang <angwerzx@126.com> | 2017-03-21 03:13:42 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-21 03:13:42 (GMT) |
commit | 4830f581af57dd305c02c1fd72299ecb5b090eca (patch) | |
tree | f2a13400bc9de4e5e24293ad5e388dca4eef959c /Misc | |
parent | 05f53735c8912f8df1077e897f052571e13c3496 (diff) | |
download | cpython-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/NEWS | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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. |