summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorNick Coghlan <ncoghlan@gmail.com>2012-08-20 03:18:15 (GMT)
committerNick Coghlan <ncoghlan@gmail.com>2012-08-20 03:18:15 (GMT)
commit48fec0539157db38a993ededb32a8f312ec09fb9 (patch)
tree4cea5afa658f50a6f4c5c46458241d02794bdd91 /Misc
parentdb7920b97874bf3988984fae57f4ca80fced558f (diff)
downloadcpython-48fec0539157db38a993ededb32a8f312ec09fb9.zip
cpython-48fec0539157db38a993ededb32a8f312ec09fb9.tar.gz
cpython-48fec0539157db38a993ededb32a8f312ec09fb9.tar.bz2
Close #14846: Handle a sys.path entry going away
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index bb893cf..35c48cf 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -13,6 +13,9 @@ Core and Builtins
- Issue #15604: Update uses of PyObject_IsTrue() to check for and handle
errors correctly. Patch by Serhiy Storchaka.
+- Issue #14846: importlib.FileFinder now handles the case where the
+ directory being searched is removed after a previous import attempt
+
Library
-------