1. The command-line arguments for subprocesses no longer need to be

specialized for Mac OS X.

2. buildapp.py - a new file for building an application icon for IDLE on Mac
OS X. See INSTALL.txt
This commit is contained in:
Tony Lownds 2003-05-13 15:28:21 +00:00
parent e9a54a3eaf
commit 2398d578a3
4 changed files with 35 additions and 64 deletions

16
Lib/idlelib/buildapp.py Normal file
View file

@ -0,0 +1,16 @@
#
# After running python setup.py install, run this program from the command
# line like so:
#
# % python2.3 buildapp.py build
#
# A double-clickable IDLE application will be created in the build/ directory.
#
from bundlebuilder import buildapp
buildapp(
name="IDLE",
mainprogram="idle.py",
argv_emulation=1,
)