[Python-checkins] r74509 - python/trunk/Lib/lib-tk/Tix.py

guilherme.polo python-checkins at python.org
Tue Aug 18 15:33:30 CEST 2009


Author: guilherme.polo
Date: Tue Aug 18 15:33:30 2009
New Revision: 74509

Log:
Mark the "radio" option of Tix.CheckList as static.

Modified:
   python/trunk/Lib/lib-tk/Tix.py

Modified: python/trunk/Lib/lib-tk/Tix.py
==============================================================================
--- python/trunk/Lib/lib-tk/Tix.py	(original)
+++ python/trunk/Lib/lib-tk/Tix.py	Tue Aug 18 15:33:30 2009
@@ -1548,7 +1548,7 @@
     # FIXME: It should inherit -superclass tixTree
     def __init__(self, master=None, cnf={}, **kw):
         TixWidget.__init__(self, master, 'tixCheckList',
-                           ['options'], cnf, kw)
+                           ['options', 'radio'], cnf, kw)
         self.subwidget_list['hlist'] = _dummyHList(self, 'hlist')
         self.subwidget_list['vsb'] = _dummyScrollbar(self, 'vsb')
         self.subwidget_list['hsb'] = _dummyScrollbar(self, 'hsb')


More information about the Python-checkins mailing list