Add special handling for Python modules that are imported implicitly

by the Python runtime: 'site' and 'exceptions'.
This commit is contained in:
Guido van Rossum 1997-12-08 05:01:06 +00:00
parent c5d2d51700
commit 94ce0d1963
1 changed files with 6 additions and 0 deletions

View File

@ -85,6 +85,9 @@ def main():
odir = ''
win = sys.platform[:3] == 'win'
# modules that are imported by the Python runtime
implicits = ["site", "exceptions"]
# output files
frozen_c = 'frozen.c'
config_c = 'config.c'
@ -217,6 +220,9 @@ def main():
target = os.path.join(odir, target)
makefile = os.path.join(odir, makefile)
for mod in implicits:
modules.append(findmodules.findmodule(mod))
# Actual work starts here...
dict = findmodules.findmodules(scriptfile, modules, path)