Release a PYC resource after reading it. No need to keep it incore.
diff --git a/Mac/Python/macimport.c b/Mac/Python/macimport.c
index 0806536..b1d6591 100644
--- a/Mac/Python/macimport.c
+++ b/Mac/Python/macimport.c
@@ -380,6 +380,8 @@
 	HUnlock(h);
 	if ( filerh != -1 )
 		CloseResFile(filerh);
+	else
+		ReleaseResource(h);
 	UseResFile(oldrh);
 	if ( co ) {
 		m = PyImport_ExecCodeModuleEx(module, co, "<pyc resource>");