This issue tracker has been migrated to GitHub ,
and is currently read-only.
For more information,
see the GitHub FAQs in the Python's Developer Guide.
Created on 2014年04月23日 20:46 by zach.ware, last changed 2022年04月11日 14:58 by admin. This issue is now closed.
| Messages (5) | |||
|---|---|---|---|
| msg217089 - (view) | Author: Zachary Ware (zach.ware) * (Python committer) | Date: 2014年04月23日 20:46 | |
We should have some tests for Tix, which currently has none. The Windows buildbots will be able to run the tests, but Tix is not guaranteed to be available elsewhere. |
|||
| msg233367 - (view) | Author: Terry J. Reedy (terry.reedy) * (Python committer) | Date: 2015年01月03日 21:30 | |
A minimal test would be that the one in the doc.
from tkinter import tix
root = tix.Tk()
root.tk.eval('package require Tix')
This passes on my 3.4.2 win7. I believe the first line should work on any system with _tkinter, whereas
https://stackoverflow.com/questions/27751923/tix-widgets-installation-issue
reports failure of the second line on his Mac with ...
self.tk.eval('package require Tix')
_tkinter.TclError: can't find package Tix
|
|||
| msg243448 - (view) | Author: Roundup Robot (python-dev) (Python triager) | Date: 2015年05月18日 01:59 | |
New changeset eeea91d0506b by Zachary Ware in branch 'default': Issue #21337: Add bare-bones Tix test https://hg.python.org/cpython/rev/eeea91d0506b |
|||
| msg243449 - (view) | Author: Zachary Ware (zach.ware) * (Python committer) | Date: 2015年05月18日 02:02 | |
As a prerequisite for #20035, I've added the simplest test possible that just makes sure Tix is available on Windows. I only added it on default as I don't have the facilities to test it properly on 2.7 and 3.4 on Windows (which is the only platform actually testing anything so far), but it should be simple enough to copy it over if anybody wants to or ever writes some real tests for Tix. Leaving this issue open as some real tests would still be nice. |
|||
| msg276511 - (view) | Author: Zachary Ware (zach.ware) * (Python committer) | Date: 2016年09月15日 03:37 | |
Tix is now deprecated, extra tests are unnecessary. |
|||
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2022年04月11日 14:58:02 | admin | set | github: 65536 |
| 2016年09月15日 03:37:42 | zach.ware | set | status: open -> closed resolution: out of date messages: + msg276511 stage: needs patch -> resolved |
| 2015年05月18日 02:02:06 | zach.ware | set | messages: + msg243449 |
| 2015年05月18日 01:59:31 | python-dev | set | nosy:
+ python-dev messages: + msg243448 |
| 2015年01月03日 21:30:51 | terry.reedy | set | nosy:
+ terry.reedy messages: + msg233367 |
| 2014年04月25日 22:53:08 | terry.reedy | set | nosy:
+ serhiy.storchaka |
| 2014年04月23日 20:46:48 | zach.ware | create | |