summaryrefslogtreecommitdiff
path: root/Tools/idle/ParenMatch.py
Commit message (Collapse)AuthorAgeFilesLines
* Get rid of old IDLE. Lib/idlelib rules!Guido van Rossum2003-06-141-189/+0
|
* Apply diff2.txt from SF patch http://www.python.org/sf/572113Walter Dörwald2002-09-111-4/+2
| | | | | | | | (with one small bugfix in bgen/bgen/scantools.py) This replaces string module functions with string methods for the stuff in the Tools directory. Several uses of string.letters etc. are still remaining.
* Whitespace normalization.Tim Peters2001-01-171-7/+6
|
* rename the global IdleConfParser object from IdleConf to idleconfJeremy Hylton2000-03-071-3/+3
| | | | | | standard usage is now from IdleConf import idleconf replace : with = in config.txt
* Don't use 1.6-isms (s.startswith()) -- we want to distribute thisGuido van Rossum2000-03-061-2/+2
| | | | before 1.6 is out so it has to be compatible with 1.5.2.
* migrate to use of IdleConf and config files to set optionsJeremy Hylton2000-03-031-12/+11
| | | | | | | | | | | | | | | | | | | | | | | idle.py: Load the config files before anything else happens XXX Need to define standard way to get files relative to the IDLE install dir PyShell.py: ColorDelegator.py: Get color defns out of IdleConf instead of IdlePrefs EditorWindow.py: Replace hard-coded font & window size with config options Get extension names via IdleConf.getextensions extend.py: Obsolete. Extensions defined in config file. ParenMatch.py: Use config file for extension options. Revise comment about parser requirements. Simplify logic on find returning None.
* paren matching extension. warning: in current version of IDLE, canJeremy Hylton2000-03-021-0/+193
not run this extension and CallTips extension at the same time.