mirror of
https://github.com/python/cpython.git
synced 2025-07-24 11:44:31 +00:00
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:
parent
e9a54a3eaf
commit
2398d578a3
4 changed files with 35 additions and 64 deletions
16
Lib/idlelib/buildapp.py
Normal file
16
Lib/idlelib/buildapp.py
Normal 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,
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue