From: Jack Jansen Date: Sun, 19 Nov 2000 21:51:06 +0000 (+0000) Subject: Close the project after building it, so that building umpteen projects doesn't keep... X-Git-Tag: v2.1a1~725 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6f484cb25a2779b685f1a5e584fb1296139b4f5e;p=python Close the project after building it, so that building umpteen projects doesn't keep all the projects open. --- diff --git a/Mac/Lib/mkcwproject/__init__.py b/Mac/Lib/mkcwproject/__init__.py index 6551b223f9..a9e05629ca 100644 --- a/Mac/Lib/mkcwproject/__init__.py +++ b/Mac/Lib/mkcwproject/__init__.py @@ -56,6 +56,7 @@ def buildproject(projectfile): prjfss = macfs.FSSpec(projectfile) cw.open(prjfss) cw.Make_Project() # XXX Should set target + cw.Close_Project() def cleanproject(projectfile): cw = cwtalker.MyCodeWarrior(start=1)