summaryrefslogtreecommitdiffstats
path: root/Lib/tkinter/test
Commit message (Collapse)AuthorAgeFilesLines
* Issue #15861: tkinter now correctly works with lists and tuples containingSerhiy Storchaka2013-01-152-5/+43
|\ | | | | | | strings with whitespaces, backslashes or unbalanced braces.
| * Issue #15861: tkinter now correctly works with lists and tuples containingSerhiy Storchaka2013-01-152-5/+43
| | | | | | | | strings with whitespaces, backslashes or unbalanced braces.
* | Merge headsSerhiy Storchaka2013-01-021-0/+45
|\ \ | |/
| * Issue #16541: tk_setPalette() now works with keyword arguments.Serhiy Storchaka2013-01-011-0/+45
| | | | | | | | Added a test for tk_setPalette().
* | Issue #15601: fix tkinter test_variables failure with OS X Aqua Tk 8.4Andrew Svetlov2012-08-091-2/+2
| |
* | Issue #1178863: Separate initialisation from setting when initializingMartin v. Löwis2012-03-131-0/+165
|/ | | | | | Tkinter.Variables; harmonize exceptions to ValueError; only delete variables that have not been deleted; assert that variable names are strings Patch by Andrew Svetlov.
* Merge from 3.1: Issue #13703: add a way to randomize the hash values of ↵Georg Brandl2012-02-201-1/+1
|\ | | | | | | | | | | | | | | | | basic types (str, bytes, datetime) in order to make algorithmic complexity attacks on (e.g.) web apps much more complicated. The environment variable PYTHONHASHSEED and the new command line flag -R control this behavior.
| * Issue #13703: add a way to randomize the hash values of basic types (str, ↵Georg Brandl2012-02-201-1/+1
| | | | | | | | | | | | | | | | | | bytes, datetime) in order to make algorithmic complexity attacks on (e.g.) web apps much more complicated. The environment variable PYTHONHASHSEED and the new command line flag -R control this behavior.
* | Issue #8716: Instead of relying on Aqua Tk exceptions to detect lack ofNed Deily2011-07-061-25/+35
| | | | | | | | | | OS X window manager connection in tk tests, use OS X Application Services API calls instead.
* | Issue #8716: Avoid crashes caused by Aqua Tk on OSX when attempting to runNed Deily2011-07-041-0/+36
| | | | | | | | | | test_tk or test_ttk_guionly under a username that is not currently logged in to the console windowserver (as may be the case under buildbot or ssh).
* | Issue #10736: Fix test_ttk test_widgets failures with Cocoa Tk 8.5.9Ned Deily2011-06-281-4/+16
| | | | | | | | on Mac OS X. (Patch by Ronald Oussoren)
* | #11565: Merge with 3.1.Ezio Melotti2011-03-161-1/+1
|\ \ | |/
| * #11565: Fix several typos. Patch by Piotr Kasprzyk.Ezio Melotti2011-03-161-1/+1
| |
| * Merged revisions 85018 via svnmerge fromAntoine Pitrou2010-10-091-4/+8
| | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r85018 | antoine.pitrou | 2010-09-26 18:36:33 +0200 (dim., 26 sept. 2010) | 4 lines Issue #8445: try to fix some buildbot failures on test_ttk_guionly. Patch by Guilherme. ........
| * Merged revisions 74473,79974 via svnmerge fromAntoine Pitrou2010-10-091-2/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ................ r74473 | guilherme.polo | 2009-08-16 16:44:14 +0200 (dim., 16 août 2009) | 13 lines Merged revisions 74471-74472 via svnmerge from svn+ssh://pythondev/python/trunk ........ r74471 | guilherme.polo | 2009-08-16 11:34:26 -0300 (Sun, 16 Aug 2009) | 1 line Issue #6244: Allow detect_tkinter to look for Tcl/Tk 8.6. ........ r74472 | guilherme.polo | 2009-08-16 11:38:57 -0300 (Sun, 16 Aug 2009) | 1 line Wrong place for issue #6244. ........ ................ r79974 | benjamin.peterson | 2010-04-12 00:04:51 +0200 (lun., 12 avril 2010) | 13 lines Merged revisions 79903,79907 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r79903 | martin.v.loewis | 2010-04-08 04:47:40 -0500 (Thu, 08 Apr 2010) | 2 lines Issue #8344: Fix test_ttk bug on FreeBSD. ........ r79907 | martin.v.loewis | 2010-04-08 12:38:32 -0500 (Thu, 08 Apr 2010) | 2 lines Issue #8204: Fix test_ttk notebook test by forcing focus. ........ ................
| * Merged revisions 73715 via svnmerge fromGeorg Brandl2009-08-135-420/+420
| | | | | | | | | | | | | | | | | | | | svn+ssh://svn.python.org/python/branches/py3k ........ r73715 | benjamin.peterson | 2009-07-01 01:06:06 +0200 (Mi, 01 Jul 2009) | 1 line convert old fail* assertions to assert* ........
* | test_tkinter: use a context manager to close directly the pipeVictor Stinner2011-01-031-1/+2
| | | | | | | | Patch written by Nadeem Vawda
* | Temporarily skip test failing with newer ttk.Georg Brandl2010-12-191-1/+3
| |
* | Fix test_tk under OS X with Tk 8.4. Patch by Ned Deily.Antoine Pitrou2010-10-051-2/+7
| | | | | | | | This should fix some buildbot failures.
* | Issue #8445: try to fix some buildbot failures on test_ttk_guionly.Antoine Pitrou2010-09-261-4/+8
| | | | | | | | Patch by Guilherme.
* | Issue #9899: Fix test_tkinter.test_font on various platforms. Patch byAntoine Pitrou2010-09-211-2/+10
| | | | | | | | Ned Deily.
* | #1730136: Fix comparison between a tk Font object and an object of a ↵Amaury Forgeot d'Arc2010-09-171-0/+20
| | | | | | | | different type.
* | Merged revisions 79903,79907 via svnmerge fromBenjamin Peterson2010-04-111-2/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r79903 | martin.v.loewis | 2010-04-08 04:47:40 -0500 (Thu, 08 Apr 2010) | 2 lines Issue #8344: Fix test_ttk bug on FreeBSD. ........ r79907 | martin.v.loewis | 2010-04-08 12:38:32 -0500 (Thu, 08 Apr 2010) | 2 lines Issue #8204: Fix test_ttk notebook test by forcing focus. ........
* | convert old fail* assertions to assert*Benjamin Peterson2009-06-305-420/+420
|/
* Merged revisions 73495 via svnmerge fromGuilherme Polo2009-06-211-0/+45
| | | | | | | | | | | | svn+ssh://pythondev/python/trunk ........ r73495 | guilherme.polo | 2009-06-21 14:22:50 -0300 (Sun, 21 Jun 2009) | 4 lines Issue #5450: Moved tests involving loading tk from Lib/test/test_tcl to Lib/lib-tk/test/test_tkinter/test_loadtk in order to follow the behaviour of test_ttkguionly. ........
* Merged revisions 69846 via svnmerge fromMark Dickinson2009-02-212-6/+6
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r69846 | mark.dickinson | 2009-02-21 20:27:01 +0000 (Sat, 21 Feb 2009) | 2 lines Issue #5341: Fix a variety of spelling errors. ........
* Merged revisions 69460,69467,69470 via svnmerge fromGuilherme Polo2009-02-092-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) ........
* Fixing changes from the last merge.Guilherme Polo2009-02-061-1/+2
|
* Merged revisions 69141,69211-69212 via svnmerge fromBenjamin Peterson2009-02-062-9/+6
| | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r69141 | benjamin.peterson | 2009-01-31 14:01:48 -0600 (Sat, 31 Jan 2009) | 1 line fix indentation ........ r69211 | guilherme.polo | 2009-02-02 14:23:29 -0600 (Mon, 02 Feb 2009) | 1 line Restore the previous geometry before leaving the test ........ r69212 | guilherme.polo | 2009-02-02 14:28:59 -0600 (Mon, 02 Feb 2009) | 1 line Moving to importlib ........
* Recorded merge of revisions 69195 via svnmerge fromGuilherme Polo2009-02-024-16/+34
| | | | | | | | | | | svn+ssh://pythondev/python/trunk ........ r69195 | guilherme.polo | 2009-02-01 22:38:54 -0200 (Sun, 01 Feb 2009) | 3 lines Use a single Tcl interpreter through all these tests, this may help some failing buildbots. ........
* Merged revisions 69060-69063 via svnmerge fromGuilherme Polo2009-01-282-5/+15
| | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev/python/trunk ........ r69060 | guilherme.polo | 2009-01-28 17:23:28 -0200 (Wed, 28 Jan 2009) | 2 lines Added support for collecting tests only from specific packages. ........ r69061 | guilherme.polo | 2009-01-28 17:28:04 -0200 (Wed, 28 Jan 2009) | 4 lines * Renaming test_tk_* to test_ttk_* since that is what they are testing. * Added ttk tests to the expected skips mapping just like where test_tcl was expected to be skipped too. ........ r69062 | guilherme.polo | 2009-01-28 18:02:01 -0200 (Wed, 28 Jan 2009) | 1 line Make sure the root windows gets destroyed ........ r69063 | guilherme.polo | 2009-01-28 18:03:26 -0200 (Wed, 28 Jan 2009) | 2 lines Issue #5083: New 'gui' resource for regrtest. ........
* Merged revisions 69050 via svnmerge fromGuilherme Polo2009-01-289-0/+2010
svn+ssh://pythondev/python/trunk ........ r69050 | guilherme.polo | 2009-01-28 11:09:03 -0200 (Wed, 28 Jan 2009) | 2 lines Added the ttk module. See issue #2983: Ttk support for Tkinter. ........