Fix read mode for pyc files

Now all test should pass on travis.
This commit is contained in:
ColinDuquesnoy
2014-02-18 19:00:35 +01:00
parent ea43efc9d8
commit 18a31dcbf1

View File

@@ -31,7 +31,8 @@ def find_module_py33(string, path=None):
module_file = None module_file = None
else: else:
module_path = loader.get_filename(string) module_path = loader.get_filename(string)
module_file = open(module_path) mode = 'rb' if module_path.endswith(".pyc") else 'r'
module_file = open(module_path, mode)
except AttributeError: except AttributeError:
# ExtensionLoader has not attribute get_filename, instead it has a # ExtensionLoader has not attribute get_filename, instead it has a
# path attribute that we can use to retrieve the module path # path attribute that we can use to retrieve the module path