summaryrefslogtreecommitdiffstats
path: root/Lib/tkinter/test/test_tkinter/test_text.py
Commit message (Collapse)AuthorAgeFilesLines
* Issue #22236: Tkinter tests now don't reuse default root window. New rootSerhiy Storchaka2014-08-241-6/+3
| | | | | | | | | window is created for every test class. Fixed Tkinter images copying operations in NoDefaultRoot mode. Tcl command names generated for "after" callbacks now contains a name of original function.
* tkinter.Text.debug() now always returns 0/1.Serhiy Storchaka2014-01-111-3/+2
| | | | Fixed a regression inroduced in issue #6157.
* test_debug in test_tkinter/test_text no longer fails when wantobjects is false.Serhiy Storchaka2013-12-251-2/+3
|
* Issue #6157: Fixed tkinter.Text.debug(). Original patch by Guilherme Polo.Serhiy Storchaka2013-11-031-0/+11
|
* convert old fail* assertions to assert*Benjamin Peterson2009-06-301-6/+6
|
* Merged revisions 69460,69467,69470 via svnmerge fromGuilherme Polo2009-02-091-0/+39
svn+ssh://pythondev/python/trunk ........ r69460 | guilherme.polo | 2009-02-09 14:09:17 -0200 (Mon, 09 Feb 2009) | 1 line Turned setup_master public ........ r69467 | guilherme.polo | 2009-02-09 17:21:21 -0200 (Mon, 09 Feb 2009) | 2 lines Some tests for Tkinter.Text.search ........ r69470 | guilherme.polo | 2009-02-09 17:57:04 -0200 (Mon, 09 Feb 2009) | 1 line Checking for tk availability before continuing (basically the same that is done in test_ttk_guionly) ........