summaryrefslogtreecommitdiffstats
path: root/Lib/tkinter/test/test_tkinter/test_text.py
Commit message (Collapse)AuthorAgeFilesLines
* gh-97928: Fix handling options starting with "-" in tkinter.Text.count() ↵Miss Islington (bot)2022-10-191-3/+1
| | | | | | | | (GH-98436) Previously they were silently ignored. Now they are errors. (cherry picked from commit e4ec8de6fa6f0a07e64f6a3e3f894926b4b0652d) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
* gh-97928: Add tests for tkinter.Text.count() (GH-98269)Miss Islington (bot)2022-10-191-0/+54
| | | | | (cherry picked from commit 1b684c8f5f738b56f859e5c87b7280610b90399f) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
* bpo-45229: Make tkinter tests discoverable (GH-28637)Serhiy Storchaka2021-10-131-4/+2
|
* 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) ........