Commit 6aad8624 authored by Serhiy Storchaka's avatar Serhiy Storchaka

Issue #25464: Fixed HList.header_exists() in tkinter.tix module by addin

a workaround to Tix library bug.
parent 0bd5a3fe
......@@ -929,7 +929,11 @@ class HList(TixWidget, XView, YView):
return self.tk.call(self._w, 'header', 'cget', col, opt)
def header_exists(self, col):
return self.tk.call(self._w, 'header', 'exists', col)
# A workaround to Tix library bug (issue #25464).
# The documented command is "exists", but only erroneous "exist" is
# accepted.
return self.tk.getboolean(self.tk.call(self._w, 'header', 'exist', col))
header_exist = header_exists
def header_delete(self, col):
self.tk.call(self._w, 'header', 'delete', col)
......
......@@ -110,6 +110,9 @@ Core and Builtins
Library
-------
- Issue #25464: Fixed HList.header_exists() in tkinter.tix module by addin
a workaround to Tix library bug.
- Issue #28488: shutil.make_archive() no longer add entry "./" to ZIP archive.
- Issue #24452: Make webbrowser support Chrome on Mac OS X.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment