summaryrefslogtreecommitdiff
path: root/Lib/idlelib/macosx_main.py
Commit message (Collapse)AuthorAgeFilesLines
* 1. The command-line arguments for subprocesses no longer need to beTony Lownds2003-05-131-42/+0
| | | | | | | 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
* Don't let the docstring end up in __main__.__doc__Tony Lownds2002-12-311-14/+14
|
* Keep __main__ namespace cleanTony Lownds2002-12-311-1/+1
|
* Whitespace NormalizationKurt B. Kaiser2002-12-311-3/+3
|
* boolcheck cannot be deleted here.Tony Lownds2002-12-241-1/+1
|
* Make this script execute using pythonwTony Lownds2002-12-231-0/+1
|
* Move boolcheck to PyShellTony Lownds2002-12-231-7/+2
|
* *** empty log message ***Tony Lownds2002-12-201-1/+1
|
* Update way a subprocess is launched for Mac OS X.Tony Lownds2002-12-201-0/+46
Another applet mechanism has been developed for Python on Mac OS X and trying to use the -c "__import__('run').main()" trick is just not working. macosx_main.py is a new file which should be used as the startup file for Mac OS X applet bundles. This startup file understands a -p option, which when seen will start run.main(). When running as an applet, this seems like the best approach.