summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_ttk_textonly.py
Commit message (Collapse)AuthorAgeFilesLines
* Remove unused imports in test modules.Georg Brandl2010-02-071-1/+0
|
* Restore original sys.path when running TTK testsNick Coghlan2009-10-171-4/+4
|
* A few more test skips via import_module, and change import_module toR. David Murray2009-03-311-0/+3
| | | | | | | return the error message produced by importlib, so that if an import in the package whose import is being wrapped is what failed the skip message will contain the name of that module instead of the name of the wrapped module. Also fixed formatting of some previous comments.
* * Renaming test_tk_* to test_ttk_* since that is what they are testing.Guilherme Polo2009-01-281-0/+17
* Added ttk tests to the expected skips mapping just like where test_tcl was expected to be skipped too.