[issue21337] Add tests for Tix

2016-09-14 Thread Zachary Ware
Zachary Ware added the comment: Tix is now deprecated, extra tests are unnecessary. -- resolution: -> out of date stage: needs patch -> resolved status: open -> closed ___ Python tracker

[issue21337] Add tests for Tix

2015-05-17 Thread Zachary Ware
Zachary Ware added the comment: 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

[issue21337] Add tests for Tix

2015-05-17 Thread Roundup Robot
Roundup Robot added the comment: New changeset eeea91d0506b by Zachary Ware in branch 'default': Issue #21337: Add bare-bones Tix test https://hg.python.org/cpython/rev/eeea91d0506b -- nosy: +python-dev ___ Python tracker rep...@bugs.python.org

[issue21337] Add tests for Tix

2015-01-03 Thread Terry J. Reedy
Terry J. Reedy added the comment: 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

[issue21337] Add tests for Tix

2014-04-25 Thread Terry J. Reedy
Changes by Terry J. Reedy tjre...@udel.edu: -- nosy: +serhiy.storchaka ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21337 ___ ___

[issue21337] Add tests for Tix

2014-04-23 Thread Zachary Ware
New submission from Zachary Ware: 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. -- components: Tests, Tkinter keywords: easy messages: 217089 nosy: zach.ware