summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/configDialog.py
diff options
context:
space:
mode:
authorSteven M. Gava <elguavas@python.net>2002-02-11 02:51:18 (GMT)
committerSteven M. Gava <elguavas@python.net>2002-02-11 02:51:18 (GMT)
commit9f25e67dd7cf1f7624421b420f117cf5478dcc39 (patch)
tree4c539ded949d97b202b11b1630e6544732559bf4 /Lib/idlelib/configDialog.py
parent46fa7bf86c4f5444ddfa76c5fbeb49e268412c8f (diff)
downloadcpython-9f25e67dd7cf1f7624421b420f117cf5478dcc39.zip
cpython-9f25e67dd7cf1f7624421b420f117cf5478dcc39.tar.gz
cpython-9f25e67dd7cf1f7624421b420f117cf5478dcc39.tar.bz2
base GetHighlight on GetThemeDict for better defaults
Diffstat (limited to 'Lib/idlelib/configDialog.py')
-rw-r--r--Lib/idlelib/configDialog.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/Lib/idlelib/configDialog.py b/Lib/idlelib/configDialog.py
index f1f9772..cb3cf4d 100644
--- a/Lib/idlelib/configDialog.py
+++ b/Lib/idlelib/configDialog.py
@@ -518,7 +518,6 @@ class ConfigDialog(Toplevel):
self.changedItems={'main':{},'highlight':{},'keys':{},'extensions':{}}
def AddChangedItem(self,type,section,item,value):
- print type,section,item,value
value=str(value) #make sure we use a string
if not self.changedItems[type].has_key(section):
self.changedItems[type][section]={}
@@ -679,7 +678,6 @@ class ConfigDialog(Toplevel):
theme=self.customTheme.get()
themeElement=sampleElement+'-'+plane
self.AddChangedItem('highlight',theme,themeElement,newColour)
- print self.changedItems['highlight'][theme]
def GetNewThemeName(self,message):
usedNames=idleConf.GetSectionList('user','highlight')