summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/buildapp.py
diff options
context:
space:
mode:
authorTony Lownds <tony@lownds.com>2003-05-13 15:28:21 (GMT)
committerTony Lownds <tony@lownds.com>2003-05-13 15:28:21 (GMT)
commit2398d578a367aa0f9155afb7275a5aec4e5caef9 (patch)
tree5a1a6c6b750dbf84f98a1d454af3322dc145a6c8 /Lib/idlelib/buildapp.py
parente9a54a3eaf552a3ee37d93907dee2ad426ea74d0 (diff)
downloadcpython-2398d578a367aa0f9155afb7275a5aec4e5caef9.zip
cpython-2398d578a367aa0f9155afb7275a5aec4e5caef9.tar.gz
cpython-2398d578a367aa0f9155afb7275a5aec4e5caef9.tar.bz2
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
Diffstat (limited to 'Lib/idlelib/buildapp.py')
-rw-r--r--Lib/idlelib/buildapp.py16
1 files changed, 16 insertions, 0 deletions
diff --git a/Lib/idlelib/buildapp.py b/Lib/idlelib/buildapp.py
new file mode 100644
index 0000000..42aeeb7
--- /dev/null
+++ b/Lib/idlelib/buildapp.py
@@ -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,
+)