mirror of
https://github.com/davidhalter/jedi.git
synced 2026-01-08 21:14:43 +08:00
Merge pull request #66 from tkf/no-ioerror
Ignore IOError when checking Python file
This commit is contained in:
@@ -33,7 +33,10 @@ def get_directory_modules_for_name(mods, name):
|
||||
try:
|
||||
return builtin.CachedModule.cache[path][1].module
|
||||
except KeyError:
|
||||
return check_fs(path)
|
||||
try:
|
||||
return check_fs(path)
|
||||
except IOError:
|
||||
return None
|
||||
|
||||
def check_fs(path):
|
||||
with open(path) as f:
|
||||
|
||||
Reference in New Issue
Block a user