Update functools section
[python.git] / Lib / idlelib / buildapp.py
blob672eb1e5f35ddf96015abe855bf6367defa9d996
2 # After running python setup.py install, run this program from the command
3 # line like so:
5 # % python2.3 buildapp.py build
7 # A double-clickable IDLE application will be created in the build/ directory.
10 from bundlebuilder import buildapp
12 buildapp(
13 name="IDLE",
14 mainprogram="idle.py",
15 argv_emulation=1,
16 iconfile="Icons/idle.icns",