[issue25464] Tix HList header_exists should be "exist"

2017-03-31 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- pull_requests: -833 ___ Python tracker ___ ___

[issue25464] Tix HList header_exists should be "exist"

2017-03-31 Thread Donald Stufft
Changes by Donald Stufft : -- pull_requests: +833 ___ Python tracker ___ ___

[issue25464] Tix HList header_exists should be "exist"

2016-10-25 Thread Terry J. Reedy
Terry J. Reedy added the comment: Subsequent to me suggesting a test, the 3.6 doc gained this: "Deprecated since version 3.6: This Tk extension is unmaintained and should not be used in new code." This answers my question about using it in IDLE. Good to apply this anyway, but no test is fine

[issue25464] Tix HList header_exists should be "exist"

2016-10-25 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: It is hard to add tests because testing infrastructure for Tix doesn't exist. -- resolution: -> fixed stage: needs patch -> resolved status: open -> closed ___ Python tracker

[issue25464] Tix HList header_exists should be "exist"

2016-10-24 Thread Roundup Robot
Roundup Robot added the comment: New changeset f57078cf5f13 by Serhiy Storchaka in branch '2.7': Issue #25464: Fixed HList.header_exists() in Tix module by adding https://hg.python.org/cpython/rev/f57078cf5f13 New changeset e928afbcc18a by Serhiy Storchaka in branch '3.5': Issue #25464: Fixed

[issue25464] Tix HList header_exists should be "exist"

2015-12-19 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Opened Tix bug: https://sourceforge.net/p/tix/bugs/110/ . -- ___ Python tracker ___

[issue25464] Tix HList header_exists should be "exist"

2015-12-19 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: As for using Tix in IDLE, on Python wiki [1] there is a mention about the 'Tixed' version of IDLE called IDEStudio: [2], [3]. [1] https://wiki.python.org/moin/Tix [2] http://web.archive.org/web/20050307041957/starship.python.net/crew/mike/Idle/ [3]

[issue25464] Tix HList header_exists should be "exist"

2015-11-26 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- assignee: -> serhiy.storchaka ___ Python tracker ___

[issue25464] Tix HList header_exists should be "exist"

2015-11-01 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: It looks as a bug in Tix. All other Tcl, Tk and Tix commands (except "assemblecode") use "exists", and "header exists" is documented. Perhaps we should workaround this bug. But I doubt about renaming header_exists to header_exist. As for tests, I'm working

[issue25464] Tix HList header_exists should be "exist"

2015-11-01 Thread Terry J. Reedy
Terry J. Reedy added the comment: If tkinter and IDLE are some places installed without tix, then it it not usable. What about the suggestion for a revised patch? -- ___ Python tracker

[issue25464] Tix HList header_exists should be "exist"

2015-11-01 Thread Terry J. Reedy
Terry J. Reedy added the comment: I agree. Leave the name 'header_exists', consistent with all others, pass 'exist', and add a comment. Optional: report the bug upstream if there are tix maintainers somewhere. Serhiy, my question about the status of tix is really whether I can use it in

[issue25464] Tix HList header_exists should be "exist"

2015-11-01 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: > Serhiy, my question about the status of tix is really whether I can use it in > IDLE, since it is not now. I can't say anything. But be aware that Tix is optional and likely is not installed on Linux. Maintainers should add new dependence to IDLE package

[issue25464] Tix HList header_exists should be "exist"

2015-10-22 Thread Terry J. Reedy
Terry J. Reedy added the comment: (Rob: FYI, a crash is something worse than just an exception.) I know very little about tix, so I don't know whether the bug is really passing 'exists' or that not being accepted. I think it is the latter. The offending function in class HList is def

[issue25464] Tix HList header_exists should be "exist"

2015-10-22 Thread Rob Williscroft
New submission from Rob Williscroft: The method header_exists of Tix HList raises: File "...\python3\lib\tkinter\tix.py", line 926, in header_exists return self.tk.call(self._w, 'header', 'exists', col) _tkinter.TclError: unknown option "exists". Must be cget, configure, create, delete,

[issue25464] Tix HList header_exists should be "exist"

2015-10-22 Thread Ethan Furman
Changes by Ethan Furman : -- nosy: +gpolo, serhiy.storchaka, terry.reedy ___ Python tracker ___