Kaydet (Commit) 01181344 authored tarafından Guido van Rossum's avatar Guido van Rossum

Don't search for *.so modules since we can't handle them!

üst 619e1bed
......@@ -95,8 +95,7 @@ def scanfile(filename):
builtins = sys.builtin_module_names
if 'sys' not in builtins: builtins.append('sys')
# XXX this table may have to be changed depending on your platform:
tails = ['.so', 'module.so', '.py', '.pyc']
tails = ['.py', '.pyc']
def findmodule(modname, path = sys.path):
if modname in builtins: return '<builtin>'
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment