diff options
author | Matthias Bussonnier <bussonniermatthias@gmail.com> | 2017-02-15 00:05:25 (GMT) |
---|---|---|
committer | Brett Cannon <brettcannon@users.noreply.github.com> | 2017-02-15 00:05:25 (GMT) |
commit | bc4bed440504597cac47d0a215ee094bfa99ba7e (patch) | |
tree | 0598b2b4776f859b7ab15f70e7cdb65475c5d8c1 /Misc | |
parent | 5ec08cea9574cf53c985af5dbed6bc3d56ff58b7 (diff) | |
download | cpython-bc4bed440504597cac47d0a215ee094bfa99ba7e.zip cpython-bc4bed440504597cac47d0a215ee094bfa99ba7e.tar.gz cpython-bc4bed440504597cac47d0a215ee094bfa99ba7e.tar.bz2 |
bpo-29546: Set 'path' on ImportError for ``from ... import ...`` (GH-91)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -12,6 +12,8 @@ Core and Builtins - bpo-29438: Fixed use-after-free problem in key sharing dict. +- bpo-29546: Set the 'path' and 'name' attribute on ImportError for ``from ... import ...``. + - Issue #29319: Prevent RunMainFromImporter overwriting sys.path[0]. - Issue #29337: Fixed possible BytesWarning when compare the code objects. |