diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2000-05-17 13:27:09 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2000-05-17 13:27:09 (GMT) |
commit | 8a6d4d9cca09f962b6c1b0c2d5f787d96c223d12 (patch) | |
tree | 69dca2ac7b8bd7856906db1f4d7aa3561927d8d8 /Mac | |
parent | 11b093641a98685ac7e34ade559de98bd681c10e (diff) | |
download | cpython-8a6d4d9cca09f962b6c1b0c2d5f787d96c223d12.zip cpython-8a6d4d9cca09f962b6c1b0c2d5f787d96c223d12.tar.gz cpython-8a6d4d9cca09f962b6c1b0c2d5f787d96c223d12.tar.bz2 |
macfsn should always be included, like exceptions and site.
Diffstat (limited to 'Mac')
-rw-r--r-- | Mac/Tools/macfreeze/macmodulefinder.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Mac/Tools/macfreeze/macmodulefinder.py b/Mac/Tools/macfreeze/macmodulefinder.py index e89b990..166942d 100644 --- a/Mac/Tools/macfreeze/macmodulefinder.py +++ b/Mac/Tools/macfreeze/macmodulefinder.py @@ -19,7 +19,7 @@ except ImportError: # Modules that must be included, and modules that need not be included # (but are if they are found) # -MAC_INCLUDE_MODULES=['site', 'exceptions'] +MAC_INCLUDE_MODULES=['site', 'exceptions', 'macfsn'] MAC_MAYMISS_MODULES=['posix', 'os2', 'nt', 'ntpath', 'dos', 'dospath', 'win32api', 'ce', 'nturl2path', 'pwd', 'sitecustomize', |