summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/boolcheck.py
Commit message (Collapse)AuthorAgeFilesLines
* Remove the 2.2 compatibility module boolcheck.py and related codeKurt B. Kaiser2003-06-141-9/+0
| | | | | | M PyShell.py R boolcheck.py M run.py
* Whitespace NormalizationKurt B. Kaiser2002-12-311-2/+1
|
* Update way a subprocess is launched for Mac OS X.Tony Lownds2002-12-201-0/+10
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.