From 566d1023ee02a16de239a40ae5f826d142b65734 Mon Sep 17 00:00:00 2001 From: David Halter Date: Sat, 14 Sep 2013 23:15:41 +0430 Subject: [PATCH] don't load builtin modules, if not necessary in python3.3 --- jedi/_compatibility.py | 1 - 1 file changed, 1 deletion(-) diff --git a/jedi/_compatibility.py b/jedi/_compatibility.py index 7305214b..fce8217b 100644 --- a/jedi/_compatibility.py +++ b/jedi/_compatibility.py @@ -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