added 'org.python.core' to the maymiss list (pickly.py tries to import it, probably for JPython support) -- jvr
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 @@
 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"