by the Python runtime: 'site' and 'exceptions'.
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'
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)