summaryrefslogtreecommitdiffstats
path: root/Mac/Tools/macfreeze/macmodulefinder.py
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>2000-09-14 13:36:06 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>2000-09-14 13:36:06 (GMT)
commitb15491ef1413bcb702d018daf21b76f92cfc0b44 (patch)
treee81d2400d526fd4b922e52dc68655f09fdf72477 /Mac/Tools/macfreeze/macmodulefinder.py
parent2cecd4115c60b128a266f45478d03229e44fa484 (diff)
downloadcpython-b15491ef1413bcb702d018daf21b76f92cfc0b44.zip
cpython-b15491ef1413bcb702d018daf21b76f92cfc0b44.tar.gz
cpython-b15491ef1413bcb702d018daf21b76f92cfc0b44.tar.bz2
Removed exceptions from the required modules (it's builtin nowadays)
Added _winreg to the non-required modules.
Diffstat (limited to 'Mac/Tools/macfreeze/macmodulefinder.py')
-rw-r--r--Mac/Tools/macfreeze/macmodulefinder.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Mac/Tools/macfreeze/macmodulefinder.py b/Mac/Tools/macfreeze/macmodulefinder.py
index 166942d..ef3f221 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']