summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2020-12-25 15:04:26 (GMT)
committerGitHub <noreply@github.com>2020-12-25 15:04:26 (GMT)
commitbb70b2afe39ad4334a9f3449cddd28149bd628b6 (patch)
tree6d86d962cf07b543fa5d25078a24bd4b9cee54ed /Misc
parent954a7427ba9c2d02faed32c02090caeca873aeca (diff)
downloadcpython-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 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2020-12-21-22-59-26.bpo-15303.zozVrq.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2020-12-21-22-59-26.bpo-15303.zozVrq.rst b/Misc/NEWS.d/next/Library/2020-12-21-22-59-26.bpo-15303.zozVrq.rst
new file mode 100644
index 0000000..5a7900a
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2020-12-21-22-59-26.bpo-15303.zozVrq.rst
@@ -0,0 +1 @@
+:mod:`tkinter` supports now widgets with boolean value False.