summaryrefslogtreecommitdiffstats
path: root/Mac/Tools
diff options
context:
space:
mode:
authorJust van Rossum <just@lettererror.com>1999-04-24 16:51:22 (GMT)
committerJust van Rossum <just@lettererror.com>1999-04-24 16:51:22 (GMT)
commitd9f3c94478190e889bcb6ec46887aaa857e6ab54 (patch)
tree2a906d862b0f80200412e70fae1e5bf45dbb4e03 /Mac/Tools
parentf98e692257a670026ebf64f83d99a78180d84f1a (diff)
downloadcpython-d9f3c94478190e889bcb6ec46887aaa857e6ab54.zip
cpython-d9f3c94478190e889bcb6ec46887aaa857e6ab54.tar.gz
cpython-d9f3c94478190e889bcb6ec46887aaa857e6ab54.tar.bz2
added 'org.python.core' to the maymiss list (pickly.py tries to import it, probably for JPython support) -- jvr
Diffstat (limited to 'Mac/Tools')
-rw-r--r--Mac/Tools/macfreeze/macmodulefinder.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/Mac/Tools/macfreeze/macmodulefinder.py b/Mac/Tools/macfreeze/macmodulefinder.py
index 0a316ad..0af0425 100644
--- a/Mac/Tools/macfreeze/macmodulefinder.py
+++ b/Mac/Tools/macfreeze/macmodulefinder.py
@@ -22,7 +22,8 @@ except ImportError:
MAC_INCLUDE_MODULES=['site', 'exceptions']
MAC_MAYMISS_MODULES=['posix', 'os2', 'nt', 'ntpath', 'dos', 'dospath',
'win32api',
- 'nturl2path', 'pwd', 'sitecustomize']
+ 'nturl2path', 'pwd', 'sitecustomize',
+ 'org.python.core']
# An exception:
Missing="macmodulefinder.Missing"