From: Guido van Rossum Date: Mon, 3 Oct 1994 16:43:15 +0000 (+0000) Subject: Don't search for *.so modules since we can't handle them! X-Git-Tag: v1.1~52 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=011813444cc1cae2d60a29750e719743edaa4b14;p=thirdparty%2FPython%2Fcpython.git Don't search for *.so modules since we can't handle them! --- diff --git a/Tools/freeze/findmodules.py b/Tools/freeze/findmodules.py index 177f1fdfde7c..5041574aa315 100644 --- a/Tools/freeze/findmodules.py +++ b/Tools/freeze/findmodules.py @@ -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 ''