summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_idle.py
Commit message (Collapse)AuthorAgeFilesLines
* Issue #23277: Remove unused imports in tests.Serhiy Storchaka2016-04-241-1/+0
|
* Issue #18492: Allow all resources when tests are not run by regrtest.py.Zachary Ware2014-06-021-4/+0
| | | | This changeset also includes cleanup allowed by this behavior change.
* Issue #18604: Consolidated checks for GUI availability.Zachary Ware2014-05-021-13/+1
| | | | | | | | | test_support._is_gui_available is now defined the same way on every platform, and now includes the Windows-specific check that had been in the Windows version of _is_gui_available and the OSX-specific check that was in tkinter.test.support.check_tk_availability. Also, every platform checks whether Tk can be instantiated (if the platform-specific checks passed).
* Issue #20567: Delete class attribute gui widgets in idle tests.Terry Jan Reedy2014-02-271-0/+1
| | | | Code patch by Serhiy Storchaka
* Issue #18441: Make test.support.requires('gui') skip when it should.Terry Jan Reedy2013-07-281-5/+17
|
* Issue #18103: Update README.txt and test_idle to describe and run gui tests.Terry Jan Reedy2013-06-291-0/+5
|
* Issue #15392: Do not run tests if threading/_thread not available. OtherwiseTerry Jan Reedy2013-05-291-8/+8
| | | | touchup test_idle. Rename README.txt.
* Issue #15392: Create a unittest framework for IDLE.Terry Jan Reedy2013-05-281-0/+14
Preliminary patch by Rajagopalasarma Jayakrishnan.