summaryrefslogtreecommitdiffstats
path: root/Mac
diff options
context:
space:
mode:
authorJust van Rossum <just@lettererror.com>1999-01-30 22:33:40 (GMT)
committerJust van Rossum <just@lettererror.com>1999-01-30 22:33:40 (GMT)
commitf59a89b5e34ac7db9e69b02a5b558c7cb49a4d9a (patch)
treec328b3ddee946c2fcac106975da796db9ae0e0b7 /Mac
parent49ef0b76bc31a26749c56f5ba051100a42077e7e (diff)
downloadcpython-f59a89b5e34ac7db9e69b02a5b558c7cb49a4d9a.zip
cpython-f59a89b5e34ac7db9e69b02a5b558c7cb49a4d9a.tar.gz
cpython-f59a89b5e34ac7db9e69b02a5b558c7cb49a4d9a.tar.bz2
added ntpath and win32api to MAC_MAYMISS_MODULES -- jvr
Diffstat (limited to 'Mac')
-rw-r--r--Mac/Tools/macfreeze/macmodulefinder.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/Mac/Tools/macfreeze/macmodulefinder.py b/Mac/Tools/macfreeze/macmodulefinder.py
index fd3ac74..0a316ad 100644
--- a/Mac/Tools/macfreeze/macmodulefinder.py
+++ b/Mac/Tools/macfreeze/macmodulefinder.py
@@ -20,7 +20,9 @@ except ImportError:
# (but are if they are found)
#
MAC_INCLUDE_MODULES=['site', 'exceptions']
-MAC_MAYMISS_MODULES=['posix', 'os2', 'nt', 'dos', 'dospath', 'nturl2path', 'pwd', 'sitecustomize']
+MAC_MAYMISS_MODULES=['posix', 'os2', 'nt', 'ntpath', 'dos', 'dospath',
+ 'win32api',
+ 'nturl2path', 'pwd', 'sitecustomize']
# An exception:
Missing="macmodulefinder.Missing"