summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_idle.py
Commit message (Collapse)AuthorAgeFilesLines
* 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 runtktests.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 #XXXXX: Fix test_idle so that idlelib test cases are actually runTerry Jan Reedy2013-11-041-0/+4
| | | | under test.regrtest on 2.7.
* Issue #18441: Move commented out code to issue message.Terry Jan Reedy2013-07-281-9/+1
|
* Issue #18441: whitespaceTerry Jan Reedy2013-07-281-1/+1
|
* Issue #18441: Comment out code that will not compile because the standardTerry Jan Reedy2013-07-281-7/+8
| | | | | | | library has a package, lib-tk, that cannot be imported by normal means. Lib/test/test_tk, etc, have special code to access this package. I will not bother with it unless the darwin check is needed before it gets moved to test.(test-)support.py.
* Issue #18441: add Mac (darwin) gui check. This is not needed today, but has beenTerry Jan Reedy2013-07-281-3/+12
| | | | in the past and might be needed again in the future
* Issue #18441: Correct previous patch, which hg committed before I wanted it to.Terry Jan Reedy2013-07-271-6/+4
|
* Issue #18441: Make test.support.requires('gui') skip when it should.Terry Jan Reedy2013-07-221-4/+16
| | | | | (Consolidating this check and various checks in tkinter files and moving them to test.support and test.regrtest will be another issue.)
* Backed out changeset: 23b0164b9c82 #18441 not workingTerry Jan Reedy2013-07-221-16/+4
|
* Backed out changeset: 9f922270a929 so can backout larger patchTerry Jan Reedy2013-07-221-1/+1
|
* Issue #18441: fix buildbot name-error for TclError.Terry Jan Reedy2013-07-221-1/+1
|
* Issue #18441: Make test.support.requires('gui') skip when it should.Terry Jan Reedy2013-07-221-4/+16
| | | | | (Consolidating this check and various checks in tkinter files and moving them to test.support and test.regrtest will be another issue.)
* Issue #18103: Update README.txt and test_idle to describe and run gui tests.Terry Jan Reedy2013-06-291-0/+5
|
* Issue #15392: Use test.test_support, as used test.support in 3.x.Terry Jan Reedy2013-05-301-7/+4
|
* Issue #15392: Create a unittest framework for IDLE, 2.7 version.Terry Jan Reedy2013-05-301-0/+17
Preliminary patch by Rajagopalasarma Jayakrishnan.