summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_tix.py
Commit message (Collapse)AuthorAgeFilesLines
* [3.10] bpo-46633: Skip tests on ASAN and/or MSAN builds (GH-31632) (GH-31634)Victor Stinner2022-03-021-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | * Refactor sanitiser skip tests into test.support (GH-30889) * Refactor sanitizer skip tests into test.support (cherry picked from commit b1cb8430504931f7854eac5d32cba74770078a4e) * Add skips to crashing tests under sanitizers instead of manually skipping them (GH-30897) (cherry picked from commit a27505345e34d462139f5f8b6b5e7c9a59955150) * bpo-46633: Skip tests on ASAN and/or MSAN builds (GH-31632) Skip tests on ASAN and/or MSAN builds: * multiprocessing tests * test___all__ * test_concurrent_futures * test_decimal * test_peg_generator * test_tools (cherry picked from commit 9204bb72a2da5885facc747e63d2bd2d654606fe) Co-authored-by: Pablo Galindo Salgado <Pablogsal@gmail.com>
* Revert test for Tix deprecation warning (GH-26005)Miss Islington (bot)2021-05-091-6/+3
| | | | | | | | | Added in bpo-41730 (GH-22186), the test apparently causes refleaks. The test isn't worth hunting them down, so it's simply reverted. This partially reverts commit 4a2d98a1e98de25c5114d11fcb0f9fedbb057e51. (cherry picked from commit 8e8307d70bb9dc18cfeeed3277c076309b27515e) Co-authored-by: Zachary Ware <zach@python.org>
* bpo-41730: Show deprecation warnings for tkinter.tix (GH-22186)Miss Islington (bot)2021-05-071-5/+10
| | | | | | | Co-authored-by: E-Paine <63801254+E-Paine@users.noreply.github.com> Co-authored-by: Zachary Ware <zach@python.org> (cherry picked from commit 4a2d98a1e98de25c5114d11fcb0f9fedbb057e51) Co-authored-by: wyz23x2 <52805709+wyz23x2@users.noreply.github.com>
* bpo-40275: Use new test.support helper submodules in tests (GH-20849)Hai Shi2020-06-251-1/+2
|
* Issue #21337: Add bare-bones Tix testZachary Ware2015-05-181-0/+32
All this does is confirm that Tix is available on Windows, which should always be the case (if _tkinter itself is available).