]> granicus.if.org Git - python/commitdiff
Removed exceptions from the required modules (it's builtin nowadays)
authorJack Jansen <jack.jansen@cwi.nl>
Thu, 14 Sep 2000 13:36:06 +0000 (13:36 +0000)
committerJack Jansen <jack.jansen@cwi.nl>
Thu, 14 Sep 2000 13:36:06 +0000 (13:36 +0000)
Added _winreg to the non-required modules.

Mac/Tools/macfreeze/macmodulefinder.py

index 166942dad60bdb0d8856be4ae3b697eb012ae421..ef3f221bca070d4414a3c4474834bb7fb1dc6981 100644 (file)
@@ -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']