diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2020-12-25 15:04:26 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-25 15:04:26 (GMT) |
commit | bb70b2afe39ad4334a9f3449cddd28149bd628b6 (patch) | |
tree | 6d86d962cf07b543fa5d25078a24bd4b9cee54ed /Lib/tkinter/tix.py | |
parent | 954a7427ba9c2d02faed32c02090caeca873aeca (diff) | |
download | cpython-bb70b2afe39ad4334a9f3449cddd28149bd628b6.zip cpython-bb70b2afe39ad4334a9f3449cddd28149bd628b6.tar.gz cpython-bb70b2afe39ad4334a9f3449cddd28149bd628b6.tar.bz2 |
bpo-15303: Support widgets with boolean value False in Tkinter (GH-23904)
Use `widget is None` instead of checking the boolean value of a widget.
Diffstat (limited to 'Lib/tkinter/tix.py')
-rw-r--r-- | Lib/tkinter/tix.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/tkinter/tix.py b/Lib/tkinter/tix.py index ef1e740..7d24075 100644 --- a/Lib/tkinter/tix.py +++ b/Lib/tkinter/tix.py @@ -386,7 +386,7 @@ class TixWidget(tkinter.Widget): self.tk.call(name, 'configure', '-' + option, value) # These are missing from Tkinter def image_create(self, imgtype, cnf={}, master=None, **kw): - if not master: + if master is None: master = self if kw and cnf: cnf = _cnfmerge((cnf, kw)) elif kw: cnf = kw @@ -467,7 +467,7 @@ class DisplayStyle: (multiple) Display Items""" def __init__(self, itemtype, cnf={}, *, master=None, **kw): - if not master: + if master is None: if 'refwindow' in kw: master = kw['refwindow'] elif 'refwindow' in cnf: @@ -862,7 +862,7 @@ class HList(TixWidget, XView, YView): return self.tk.call(self._w, 'add', entry, *self._options(cnf, kw)) def add_child(self, parent=None, cnf={}, **kw): - if not parent: + if parent is None: parent = '' return self.tk.call( self._w, 'addchild', parent, *self._options(cnf, kw)) |