Minimum fixes to make freeze.py do something useful.

This commit is contained in:
Georg Brandl 2010-08-02 22:25:16 +00:00
parent bf76ce168c
commit 0063958c2e
2 changed files with 7 additions and 8 deletions

View file

@ -201,7 +201,7 @@ def main():
# modules that are imported by the Python runtime
implicits = []
for module in ('site', 'warnings',):
for module in ('site', 'warnings', 'encodings.utf_8', 'encodings.latin_1'):
if module not in exclude:
implicits.append(module)