From 873fc16247a7da9864bad444e1ea8291179b1805 Mon Sep 17 00:00:00 2001 From: David Halter Date: Fri, 11 Oct 2013 23:37:31 +0430 Subject: [PATCH] py33 fix for an undefined name --- jedi/_compatibility.py | 1 + 1 file changed, 1 insertion(+) diff --git a/jedi/_compatibility.py b/jedi/_compatibility.py index fce8217b..79d43737 100644 --- a/jedi/_compatibility.py +++ b/jedi/_compatibility.py @@ -36,6 +36,7 @@ def find_module_py33(string, path=None): # is builtin module module_path = string module_file = None + is_package = False return module_file, module_path, is_package