From: Jack Jansen Date: Thu, 14 Sep 2000 13:36:06 +0000 (+0000) Subject: Removed exceptions from the required modules (it's builtin nowadays) X-Git-Tag: v2.0b2~338 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b15491ef1413bcb702d018daf21b76f92cfc0b44;p=python Removed exceptions from the required modules (it's builtin nowadays) Added _winreg to the non-required modules. --- diff --git a/Mac/Tools/macfreeze/macmodulefinder.py b/Mac/Tools/macfreeze/macmodulefinder.py index 166942dad6..ef3f221bca 100644 --- a/Mac/Tools/macfreeze/macmodulefinder.py +++ b/Mac/Tools/macfreeze/macmodulefinder.py @@ -19,9 +19,9 @@ 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', 'macfsn'] +MAC_INCLUDE_MODULES=['site', 'macfsn'] MAC_MAYMISS_MODULES=['posix', 'os2', 'nt', 'ntpath', 'dos', 'dospath', - 'win32api', 'ce', + 'win32api', 'ce', '_winreg', 'nturl2path', 'pwd', 'sitecustomize', 'org.python.core']