From: Jack Jansen Date: Wed, 26 Jun 2002 20:35:18 +0000 (+0000) Subject: Close the project after generating it, so we don't keep a gazillion project X-Git-Tag: v2.3c1~5202 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=bc5e1453417e83411b255523eac9be83764ac47f;p=python Close the project after generating it, so we don't keep a gazillion project files open when we're rebuilding them all. --- diff --git a/Mac/Lib/mkcwproject/__init__.py b/Mac/Lib/mkcwproject/__init__.py index 69a1f32c9f..ea127eea59 100644 --- a/Mac/Lib/mkcwproject/__init__.py +++ b/Mac/Lib/mkcwproject/__init__.py @@ -61,6 +61,7 @@ def makeproject(xmlfile, projectfile): xmlfss = macfs.FSSpec(xmlfile) prjfss = macfs.FSSpec(projectfile) cw.my_mkproject(prjfss, xmlfss) + cw.Close_Project() def buildproject(projectfile): cw = cwtalker.MyCodeWarrior(start=1)