summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteven M. Gava <elguavas@python.net>2002-03-05 00:31:43 (GMT)
committerSteven M. Gava <elguavas@python.net>2002-03-05 00:31:43 (GMT)
commitdfd0b296d766645bd2e01955a61f52643a483922 (patch)
tree6aa55eb2c3d8c16d01d898dd2430678e4c8433ff
parentf31eec0e2ee3f27951693e7478c5650f64971b3c (diff)
downloadcpython-dfd0b296d766645bd2e01955a61f52643a483922.zip
cpython-dfd0b296d766645bd2e01955a61f52643a483922.tar.gz
cpython-dfd0b296d766645bd2e01955a61f52643a483922.tar.bz2
remove debug cruft
-rw-r--r--Lib/idlelib/configDialog.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/Lib/idlelib/configDialog.py b/Lib/idlelib/configDialog.py
index 753a1fc..4f85cc0 100644
--- a/Lib/idlelib/configDialog.py
+++ b/Lib/idlelib/configDialog.py
@@ -942,28 +942,22 @@ class ConfigDialog(Toplevel):
print 'current option',currentOption
##load available theme option menus
if self.themeIsBuiltin.get(): #default theme selected
- print 'builtin theme'
itemList=idleConf.GetSectionList('default','highlight')
itemList.sort()
- print 'builtin items:',itemList
self.optMenuThemeBuiltin.SetMenu(itemList,currentOption)
itemList=idleConf.GetSectionList('user','highlight')
itemList.sort()
- print 'user items:',itemList
if not itemList:
self.radioThemeCustom.config(state=DISABLED)
self.customTheme.set('- no custom themes -')
else:
self.optMenuThemeCustom.SetMenu(itemList,itemList[0])
else: #user theme selected
- print 'user theme'
itemList=idleConf.GetSectionList('user','highlight')
itemList.sort()
- print 'user items:',itemList
self.optMenuThemeCustom.SetMenu(itemList,currentOption)
itemList=idleConf.GetSectionList('default','highlight')
itemList.sort()
- print 'builtin items:',itemList
self.optMenuThemeBuiltin.SetMenu(itemList,itemList[0])
self.SetThemeType()
##load theme element option menu