summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorKurt B. Kaiser <kbk@shore.net>2002-09-14 02:40:17 (GMT)
committerKurt B. Kaiser <kbk@shore.net>2002-09-14 02:40:17 (GMT)
commit12b9f340cee9f125e59e75ad9681538c736f23c6 (patch)
treea188f87a2e614e6f2140044f9e0cda30b5552ad9 /Lib
parentcb7a383bad7e7085f1bd6067865516aa9244cf23 (diff)
downloadcpython-12b9f340cee9f125e59e75ad9681538c736f23c6.zip
cpython-12b9f340cee9f125e59e75ad9681538c736f23c6.tar.gz
cpython-12b9f340cee9f125e59e75ad9681538c736f23c6.tar.bz2
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')
-rw-r--r--Lib/idlelib/EditorWindow.py57
1 files changed, 0 insertions, 57 deletions
diff --git a/Lib/idlelib/EditorWindow.py b/Lib/idlelib/EditorWindow.py
index 5aff20b..01deba0 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