summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMatthias Bussonnier <bussonniermatthias@gmail.com>2017-02-15 00:05:25 (GMT)
committerBrett Cannon <brettcannon@users.noreply.github.com>2017-02-15 00:05:25 (GMT)
commitbc4bed440504597cac47d0a215ee094bfa99ba7e (patch)
tree0598b2b4776f859b7ab15f70e7cdb65475c5d8c1 /Misc
parent5ec08cea9574cf53c985af5dbed6bc3d56ff58b7 (diff)
downloadcpython-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/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index e024e01..51055ef 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.