fixed import problems in python3.3

This commit is contained in:
David Halter
2013-09-14 23:12:09 +04:30
parent 0025a8c61e
commit a2ceaf1987

View File

@@ -33,7 +33,9 @@ def find_module_py33(string, path=None):
module_path = loader.get_filename(string) module_path = loader.get_filename(string)
module_file = open(module_path) module_file = open(module_path)
except AttributeError: except AttributeError:
module_path = loader.load_module(string).__name__ # is builtin module
loader.load_module(string)
module_path = string
module_file = None module_file = None
return module_file, module_path, is_package return module_file, module_path, is_package