From: Guilherme Polo Date: Tue, 18 Aug 2009 13:33:30 +0000 (+0000) Subject: Mark the "radio" option of Tix.CheckList as static. X-Git-Tag: v2.7a1~642 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=57f9b7298afc12da0717531216e2990e6e2ffc20;p=python Mark the "radio" option of Tix.CheckList as static. --- diff --git a/Lib/lib-tk/Tix.py b/Lib/lib-tk/Tix.py index d2ede366aa..91b27f53d0 100755 --- a/Lib/lib-tk/Tix.py +++ b/Lib/lib-tk/Tix.py @@ -1548,7 +1548,7 @@ class CheckList(TixWidget): # 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')