[Idle-dev] CVS: idle configDialog.py,1.39,1.40
Stephen M. Gava
elguavas@users.sourceforge.net
Mon, 04 Mar 2002 16:31:45 -0800
Update of /cvsroot/idlefork/idle
In directory usw-pr-cvs1:/tmp/cvs-serv25234
Modified Files:
configDialog.py
Log Message:
remove debug cruft
Index: configDialog.py
===================================================================
RCS file: /cvsroot/idlefork/idle/configDialog.py,v
retrieving revision 1.39
retrieving revision 1.40
diff -C2 -r1.39 -r1.40
*** configDialog.py 5 Mar 2002 00:25:58 -0000 1.39
--- configDialog.py 5 Mar 2002 00:31:43 -0000 1.40
***************
*** 943,954 ****
##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)
--- 943,951 ----
***************
*** 957,968 ****
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()
--- 954,962 ----