]> granicus.if.org Git - python/commitdiff
remove debug cruft
authorSteven M. Gava <elguavas@python.net>
Tue, 5 Mar 2002 00:31:43 +0000 (00:31 +0000)
committerSteven M. Gava <elguavas@python.net>
Tue, 5 Mar 2002 00:31:43 +0000 (00:31 +0000)
Lib/idlelib/configDialog.py

index 753a1fc1539c26c25359a91ed21c7f5fe10fa9e6..4f85cc0479c7fcd4054861a8a194946e4aa73caa 100644 (file)
@@ -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