Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 1. The command-line arguments for subprocesses no longer need to be | Tony Lownds | 2003-05-13 | 1 | -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 Lownds | 2002-12-31 | 1 | -14/+14 |
| | |||||
* | Keep __main__ namespace clean | Tony Lownds | 2002-12-31 | 1 | -1/+1 |
| | |||||
* | Whitespace Normalization | Kurt B. Kaiser | 2002-12-31 | 1 | -3/+3 |
| | |||||
* | boolcheck cannot be deleted here. | Tony Lownds | 2002-12-24 | 1 | -1/+1 |
| | |||||
* | Make this script execute using pythonw | Tony Lownds | 2002-12-23 | 1 | -0/+1 |
| | |||||
* | Move boolcheck to PyShell | Tony Lownds | 2002-12-23 | 1 | -7/+2 |
| | |||||
* | *** empty log message *** | Tony Lownds | 2002-12-20 | 1 | -1/+1 |
| | |||||
* | Update way a subprocess is launched for Mac OS X. | Tony Lownds | 2002-12-20 | 1 | -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. |