diff options
author | Kurt B. Kaiser <kbk@shore.net> | 2002-09-14 02:40:17 +0000 |
---|---|---|
committer | Kurt B. Kaiser <kbk@shore.net> | 2002-09-14 02:40:17 +0000 |
commit | 12b9f340cee9f125e59e75ad9681538c736f23c6 (patch) | |
tree | a188f87a2e614e6f2140044f9e0cda30b5552ad9 /Lib/idlelib/EditorWindow.py | |
parent | cb7a383bad7e7085f1bd6067865516aa9244cf23 (diff) | |
download | cpython-git-12b9f340cee9f125e59e75ad9681538c736f23c6.tar.gz |
MERGE DS_RPC_BRANCH into MAIN
EditorWindow.py
don't track Py Idle patch 543222 - disable script bindings in shell
since it was done differently in MAIN
Remove "binding comments" 05 Aug 1.23.2.3 to 1.23.2.4
Remove last dependencies to old config backend 06Aug to 1.23.2.5
Diffstat (limited to 'Lib/idlelib/EditorWindow.py')
-rw-r--r-- | Lib/idlelib/EditorWindow.py | 57 |
1 files changed, 0 insertions, 57 deletions
diff --git a/Lib/idlelib/EditorWindow.py b/Lib/idlelib/EditorWindow.py index 5aff20b310..01deba03d6 100644 --- a/Lib/idlelib/EditorWindow.py +++ b/Lib/idlelib/EditorWindow.py @@ -14,69 +14,12 @@ import SearchDialog import GrepDialog import ReplaceDialog import PyParse -#from IdleConf import idleconf from configHandler import idleConf import aboutDialog, textView, configDialog # The default tab setting for a Text widget, in average-width characters. TK_TABWIDTH_DEFAULT = 8 -# File menu - -#$ event <<open-module>> -#$ win <Alt-m> -#$ unix <Control-x><Control-m> - -#$ event <<open-class-browser>> -#$ win <Alt-c> -#$ unix <Control-x><Control-b> - -#$ event <<open-path-browser>> - -#$ event <<close-window>> - -#$ unix <Control-x><Control-0> -#$ unix <Control-x><Key-0> -#$ win <Alt-F4> - -# Edit menu - -#$ event <<Copy>> -#$ win <Control-c> -#$ unix <Alt-w> - -#$ event <<Cut>> -#$ win <Control-x> -#$ unix <Control-w> - -#$ event <<Paste>> -#$ win <Control-v> -#$ unix <Control-y> - -#$ event <<select-all>> -#$ win <Alt-a> -#$ unix <Alt-a> - -# Help menu - -#$ event <<help>> -#$ win <F1> -#$ unix <F1> - -#$ event <<about-idle>> - -# Events without menu entries - -#$ event <<remove-selection>> -#$ win <Escape> - -#$ event <<center-insert>> -#$ win <Control-l> -#$ unix <Control-l> - -#$ event <<do-nothing>> -#$ unix <Control-x> - class EditorWindow: from Percolator import Percolator from ColorDelegator import ColorDelegator |