1
0
forked from VimPlug/jedi

don't load builtin modules, if not necessary in python3.3

This commit is contained in:
David Halter
2013-09-14 23:15:41 +04:30
parent 92237b5598
commit 566d1023ee

View File

@@ -34,7 +34,6 @@ def find_module_py33(string, path=None):
module_file = open(module_path)
except AttributeError:
# is builtin module
loader.load_module(string)
module_path = string
module_file = None