diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2003-01-22 14:03:12 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2003-01-22 14:03:12 (GMT) |
commit | d44a3ec63c5d3608c3dc88fbc5f63dd6a96303d6 (patch) | |
tree | 5df18e2744ece8c6f289b49d409f5e0ddd3a1d97 /Mac/scripts/BuildApplication.py | |
parent | 96bf0d75e27fa4f221b2d670f545a63cd903a726 (diff) | |
download | cpython-d44a3ec63c5d3608c3dc88fbc5f63dd6a96303d6.zip cpython-d44a3ec63c5d3608c3dc88fbc5f63dd6a96303d6.tar.gz cpython-d44a3ec63c5d3608c3dc88fbc5f63dd6a96303d6.tar.bz2 |
Getting rid of StandardGetFile
Diffstat (limited to 'Mac/scripts/BuildApplication.py')
-rw-r--r-- | Mac/scripts/BuildApplication.py | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/Mac/scripts/BuildApplication.py b/Mac/scripts/BuildApplication.py index a7c8f40..c919b3f 100644 --- a/Mac/scripts/BuildApplication.py +++ b/Mac/scripts/BuildApplication.py @@ -12,7 +12,6 @@ import sys import string import os -import macfs import MacOS from Carbon import Res from Carbon import Dlg @@ -54,10 +53,10 @@ def buildapplication(debug = 0): # Ask for source text if not specified in sys.argv[1:] if not sys.argv[1:]: - srcfss, ok = macfs.PromptGetFile('Select Python source:', 'TEXT') - if not ok: + filename = EasyDialogs.AskFileForOpen(message='Select Python source:', + fileTypes=('TEXT',)) + if not filename: return - filename = srcfss.as_pathname() else: if sys.argv[2:]: raise buildtools.BuildError, "please select one file at a time" @@ -73,10 +72,10 @@ def buildapplication(debug = 0): else: tf = tf + '.app' - dstfss, ok = macfs.StandardPutFile('Save application as:', tf) + dstfilename = EasyDialogs.AskFileForSate(message='Save application as:', + savedFileName=tf) if not ok: return - dstfilename = dstfss.as_pathname() macgen_bin.generate(filename, dstfilename, None, architecture, 1) |