diff options
author | Guido van Rossum <guido@python.org> | 1999-01-04 16:35:02 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1999-01-04 16:35:02 (GMT) |
commit | 906572a06df7ca45cc7f1101b73c8ed8fc54c49f (patch) | |
tree | fb707b8be39f5ce8456711c0627c3508f8bb4412 /Tools | |
parent | e911c3e20cfa324e95f49d033cfe636543cce8cb (diff) | |
download | cpython-906572a06df7ca45cc7f1101b73c8ed8fc54c49f.zip cpython-906572a06df7ca45cc7f1101b73c8ed8fc54c49f.tar.gz cpython-906572a06df7ca45cc7f1101b73c8ed8fc54c49f.tar.bz2 |
Ran eventparse.py again.
Diffstat (limited to 'Tools')
-rw-r--r-- | Tools/idle/keydefs.py | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/Tools/idle/keydefs.py b/Tools/idle/keydefs.py index 1e94904..39eb306 100644 --- a/Tools/idle/keydefs.py +++ b/Tools/idle/keydefs.py @@ -8,7 +8,6 @@ windows_keydefs = \ '<<close-window>>': ['<Alt-F4>'], '<<dump-undo-state>>': ['<Control-backslash>'], '<<end-of-file>>': ['<Control-d>'], - '<<expand-word>>': ['<Alt-slash>'], '<<help>>': ['<F1>'], '<<history-next>>': ['<Alt-n>'], '<<history-previous>>': ['<Alt-p>'], @@ -25,8 +24,7 @@ windows_keydefs = \ '<<save-window>>': ['<Control-s>'], '<<select-all>>': ['<Alt-a>'], '<<toggle-auto-coloring>>': ['<Control-slash>'], - '<<undo>>': ['<Control-z>'], -} + '<<undo>>': ['<Control-z>']} unix_keydefs = \ {'<<Copy>>': ['<Alt-w>', '<Meta-w>'], @@ -39,7 +37,6 @@ unix_keydefs = \ '<<do-nothing>>': ['<Control-x>'], '<<dump-undo-state>>': ['<Control-backslash>'], '<<end-of-file>>': ['<Control-d>'], - '<<expand-word>>': ['<Alt-slash>', '<Meta-slash>'], '<<help>>': ['<F1>'], '<<history-next>>': ['<Alt-n>', '<Meta-n>'], '<<history-previous>>': ['<Alt-p>', '<Meta-p>'], @@ -55,5 +52,4 @@ unix_keydefs = \ '<<save-window>>': ['<Control-x><Control-s>'], '<<select-all>>': ['<Alt-a>', '<Meta-a>'], '<<toggle-auto-coloring>>': ['<Control-slash>'], - '<<undo>>': ['<Control-z>'], -} + '<<undo>>': ['<Control-z>']} |