summaryrefslogtreecommitdiffstats
path: root/Lib/tkinter/test/test_tkinter
Commit message (Collapse)AuthorAgeFilesLines
* bpo-30310: Add a test for non-ascii font family. (#1567) (#1832)Serhiy Storchaka2017-05-271-1/+11
|
* Issue #27939: Fixed bugs in tkinter.ttk.LabeledScale and tkinter.Scale causedSerhiy Storchaka2016-10-301-3/+2
|\ | | | | | | | | by representing the scale as float value internally in Tk. tkinter.IntVar now works if float value is set to underlying Tk variable.
| * Issue #27939: Fixed bugs in tkinter.ttk.LabeledScale and tkinter.Scale causedSerhiy Storchaka2016-10-301-3/+2
| | | | | | | | | | by representing the scale as float value internally in Tk. tkinter.IntVar now works if float value is set to underlying Tk variable.
* | Issue #22115: Updated Misc/NEWS.Serhiy Storchaka2016-06-261-2/+2
|\ \ | |/
| * Issue #22115: Fixed tracing Tkinter variables:Serhiy Storchaka2016-06-261-1/+50
| | | | | | | | | | | | * tracing in the "u" mode now works * trace_vdelete() with wrong mode no longer break tracing * trace_vinfo() now always returns a list of pairs of strings
* | Issue #22115: Added methods trace_add, trace_remove and trace_info in theSerhiy Storchaka2016-06-261-1/+100
| | | | | | | | | | | | tkinter.Variable class. They replace old methods trace_variable, trace, trace_vdelete and trace_vinfo that use obsolete Tcl commands and might not work in future versions of Tcl.
* | Issue #27025: Generated names for Tkinter widgets are now more meanfulSerhiy Storchaka2016-06-131-0/+8
| | | | | | | | and recognizirable.
* | Issue #26177: Fixed the keys() method for Canvas and Scrollbar widgets.Serhiy Storchaka2016-03-092-2/+17
|\ \ | |/
| * Issue #26177: Fixed the keys() method for Canvas and Scrollbar widgets.Serhiy Storchaka2016-03-092-2/+17
| | | | | | | | Added few missed tests for configure options.
* | Issue #25263: Fixed the tkinter.test.test_tkinter.test_font.FontTest testSerhiy Storchaka2015-11-101-1/+1
|\ \ | |/ | | | | | | | | | | failure when the test is ran the second time. The root attribute was set in parent class in setUpClass and then overridded in child class in tearDownClass.
| * Issue #25263: Fixed the tkinter.test.test_tkinter.test_font.FontTest testSerhiy Storchaka2015-11-101-1/+1
| |\ | | | | | | | | | | | | | | | | | | failure when the test is ran the second time. The root attribute was set in parent class in setUpClass and then overridded in child class in tearDownClass.
| | * Issue #25263: Fixed the tkinter.test.test_tkinter.test_font.FontTest testSerhiy Storchaka2015-11-101-1/+1
| | | | | | | | | | | | | | | | | | | | | failure when the test is ran the second time. The root attribute was set in parent class in setUpClass and then overridded in child class in tearDownClass.
* | | Issue #25263: Trying to fix test_use on Windows.Serhiy Storchaka2015-11-071-3/+4
|/ /
* | Issue #24408: Fixed test for tkinter.Font on OS X.Serhiy Storchaka2015-06-211-1/+10
|\ \ | |/ | | | | Based on patch by Martin Panter.
| * Issue #24408: Fixed test for tkinter.Font on OS X.Serhiy Storchaka2015-06-211-1/+10
| | | | | | | | Based on patch by Martin Panter.
* | Issue #24408: Added more tkinter.Font tests.Serhiy Storchaka2015-06-091-5/+65
|\ \ | |/
| * Issue #24408: Added more tkinter.Font tests.Serhiy Storchaka2015-06-091-5/+65
| |
* | Issue #23880: Tkinter's getint() and getdouble() now support Tcl_Obj.Serhiy Storchaka2015-05-061-3/+3
| | | | | | | | Tkinter's getdouble() now supports any numbers (in particular int).
* | Use more precise Tcl version checks in tests.Serhiy Storchaka2015-04-231-2/+2
|\ \ | |/
| * Use more precise Tcl version checks in tests.Serhiy Storchaka2015-04-231-2/+2
| |
* | Issue #15133: _tkinter.tkapp.getboolean() now supports Tcl_Obj and alwaysSerhiy Storchaka2015-04-041-4/+30
|\ \ | |/ | | | | | | returns bool. tkinter.BooleanVar now validates input values (accepted bool, int, str, and Tcl_Obj). tkinter.BooleanVar.get() now always returns bool.
| * Issue #15133: _tkinter.tkapp.getboolean() now supports Tcl_Obj and alwaysSerhiy Storchaka2015-04-041-4/+30
| | | | | | | | | | returns bool. tkinter.BooleanVar now validates input values (accepted bool, int, str, and Tcl_Obj). tkinter.BooleanVar.get() now always returns bool.
* | Issue #22236: Tkinter tests now don't reuse default root window. New rootSerhiy Storchaka2014-08-247-72/+49
|\ \ | |/ | | | | | | | | | | | | | | 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.
| * Issue #22236: Tkinter tests now don't reuse default root window. New rootSerhiy Storchaka2014-08-247-72/+49
| | | | | | | | | | | | | | | | | | 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.
* | Issue #21580: Now Tkinter correctly handles bytes arguments passed to Tk.Serhiy Storchaka2014-07-301-5/+0
|\ \ | |/ | | | | In particular this allows to initialize images from binary data.
| * Issue #21580: Now Tkinter correctly handles bytes arguments passed to Tk.Serhiy Storchaka2014-07-301-5/+0
| | | | | | | | In particular this allows to initialize images from binary data.
| * Issue #6167: Backported tests for Scrollbar.activate() and Scrollbar.set()Serhiy Storchaka2014-07-231-0/+18
| | | | | | | | from 6ae34a948cb4.
* | Issue #6167: Scrollbar.activate() now returns the name of active element ifSerhiy Storchaka2014-07-231-0/+19
| | | | | | | | | | the argument is not specified. Scrollbar.set() now always accepts only 2 arguments. Added tests for Scrollbar.activate() and Scrollbar.set().
* | Issue #6181: Fixed minor bugs in tkinter.Listbox methods:Serhiy Storchaka2014-06-021-10/+42
|\ \ | |/ | | | | bbox(), curselection() and get().
| * Issue #6181: Fixed minor bugs in tkinter.Listbox methods:Serhiy Storchaka2014-06-021-10/+42
| | | | | | | | bbox(), curselection() and get().
* | Issue #21605: Added tests for Tkinter images.Serhiy Storchaka2014-06-011-0/+341
|\ \ | |/
| * Issue #21605: Added tests for Tkinter images.Serhiy Storchaka2014-06-011-0/+341
| |
* | Fixed new Tkinter tests added in issue #21522 with Tk 8.4.Serhiy Storchaka2014-05-231-6/+13
|\ \ | |/
| * Fixed new Tkinter tests added in issue #21522 with Tk 8.4.Serhiy Storchaka2014-05-231-6/+13
| |
* | Issue #21522: Added Tkinter tests for Listbox.itemconfigure(),Serhiy Storchaka2014-05-231-0/+181
|\ \ | |/ | | | | PanedWindow.paneconfigure(), and Menu.entryconfigure().
| * Issue #21522: Added Tkinter tests for Listbox.itemconfigure(),Serhiy Storchaka2014-05-231-0/+181
| | | | | | | | PanedWindow.paneconfigure(), and Menu.entryconfigure().
* | Issue #20635: Added tests for Tk geometry managers.Serhiy Storchaka2014-04-131-0/+902
|\ \ | |/
| * Issue #20635: Added tests for Tk geometry managers.Serhiy Storchaka2014-04-131-0/+902
| |
* | Issue #20636: Improved the repr of Tkinter widgets.Serhiy Storchaka2014-04-041-0/+5
|/
* Issue #19761: Fixed Tkinter tests on OS X.Serhiy Storchaka2014-02-031-4/+5
|\
| * Issue #19761: Fixed Tkinter tests on OS X.Serhiy Storchaka2014-02-031-4/+5
| |
* | Issue #20368: The null character now correctly passed from Tcl to Python.Serhiy Storchaka2014-02-031-0/+18
|\ \ | |/ | | | | Improved error handling in variables-related commands.
| * Issue #20368: The null character now correctly passed from Tcl to Python.Serhiy Storchaka2014-02-031-0/+18
| | | | | | | | Improved error handling in variables-related commands.
* | tkinter.Text.debug() now always returns 0/1.Serhiy Storchaka2014-01-111-3/+2
|\ \ | |/ | | | | Fixed a regression inroduced in issue #6157.
| * tkinter.Text.debug() now always returns 0/1.Serhiy Storchaka2014-01-111-3/+2
| | | | | | | | Fixed a regression inroduced in issue #6157.
* | Issue #20067: Tkinter variables now work when wantobjects is false.Serhiy Storchaka2013-12-261-6/+9
|\ \ | |/
| * Issue #20067: Tkinter variables now work when wantobjects is false.Serhiy Storchaka2013-12-261-6/+9
| |
* | test_debug in test_tkinter/test_text no longer fails when wantobjects is false.Serhiy Storchaka2013-12-251-2/+3
|\ \ | |/
| * test_debug in test_tkinter/test_text no longer fails when wantobjects is false.Serhiy Storchaka2013-12-251-2/+3
| |
* | Issue #19733: Temporary disable test_image on MacOSX.Serhiy Storchaka2013-11-231-0/+3
|\ \ | |/