summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/ParenMatch.py
diff options
context:
space:
mode:
authorSteven M. Gava <elguavas@python.net>2002-01-19 10:41:51 (GMT)
committerSteven M. Gava <elguavas@python.net>2002-01-19 10:41:51 (GMT)
commit72c3bf076f785aaf54d63a7e8cae29bc8282920e (patch)
tree25a7d261d1cd962735f40dc038fd51ce5b1edf99 /Lib/idlelib/ParenMatch.py
parentc628a06c709dcf0d96ad55a475a5a1318d06dba4 (diff)
downloadcpython-72c3bf076f785aaf54d63a7e8cae29bc8282920e.zip
cpython-72c3bf076f785aaf54d63a7e8cae29bc8282920e.tar.gz
cpython-72c3bf076f785aaf54d63a7e8cae29bc8282920e.tar.bz2
changeover to new keybinding configuration implementation
Diffstat (limited to 'Lib/idlelib/ParenMatch.py')
-rw-r--r--Lib/idlelib/ParenMatch.py12
1 files changed, 0 insertions, 12 deletions
diff --git a/Lib/idlelib/ParenMatch.py b/Lib/idlelib/ParenMatch.py
index 17d76c2..7851422 100644
--- a/Lib/idlelib/ParenMatch.py
+++ b/Lib/idlelib/ParenMatch.py
@@ -43,19 +43,7 @@ class ParenMatch:
to the right of a right paren. I don't know how to do that in Tk,
so I haven't bothered.
"""
-
menudefs = []
-
- keydefs = {
- '<<flash-open-paren>>' : ('<KeyRelease-parenright>',
- '<KeyRelease-bracketright>',
- '<KeyRelease-braceright>'),
- '<<check-restore>>' : ('<KeyPress>',),
- }
-
- windows_keydefs = {}
- unix_keydefs = {}
-
iconf = idleconf.getsection('ParenMatch')
STYLE = iconf.getdef('style', 'default')
FLASH_DELAY = iconf.getint('flash-delay')