diff options
author | Steven M. Gava <elguavas@python.net> | 2002-01-19 10:41:51 +0000 |
---|---|---|
committer | Steven M. Gava <elguavas@python.net> | 2002-01-19 10:41:51 +0000 |
commit | 72c3bf076f785aaf54d63a7e8cae29bc8282920e (patch) | |
tree | 25a7d261d1cd962735f40dc038fd51ce5b1edf99 /Lib/idlelib/CallTips.py | |
parent | c628a06c709dcf0d96ad55a475a5a1318d06dba4 (diff) | |
download | cpython-git-72c3bf076f785aaf54d63a7e8cae29bc8282920e.tar.gz |
changeover to new keybinding configuration implementation
Diffstat (limited to 'Lib/idlelib/CallTips.py')
-rw-r--r-- | Lib/idlelib/CallTips.py | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/Lib/idlelib/CallTips.py b/Lib/idlelib/CallTips.py index 7c5f41c73d..b1f100f222 100644 --- a/Lib/idlelib/CallTips.py +++ b/Lib/idlelib/CallTips.py @@ -10,19 +10,6 @@ class CallTips: menudefs = [ ] - keydefs = { - '<<paren-open>>': ['<Key-parenleft>'], - '<<paren-close>>': ['<Key-parenright>'], - '<<check-calltip-cancel>>': ['<KeyRelease>'], - '<<calltip-cancel>>': ['<ButtonPress>', '<Key-Escape>'], - } - - windows_keydefs = { - } - - unix_keydefs = { - } - def __init__(self, editwin): self.editwin = editwin self.text = editwin.text |