Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | bpo-30310: Add a test for non-ascii font family. (#1567) (#1832) | Serhiy Storchaka | 2017-05-27 | 1 | -1/+11 |
| | |||||
* | Issue #27939: Fixed bugs in tkinter.ttk.LabeledScale and tkinter.Scale caused | Serhiy Storchaka | 2016-10-30 | 1 | -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 caused | Serhiy Storchaka | 2016-10-30 | 1 | -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 Storchaka | 2016-06-26 | 1 | -2/+2 |
|\ \ | |/ | |||||
| * | Issue #22115: Fixed tracing Tkinter variables: | Serhiy Storchaka | 2016-06-26 | 1 | -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 the | Serhiy Storchaka | 2016-06-26 | 1 | -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 meanful | Serhiy Storchaka | 2016-06-13 | 1 | -0/+8 |
| | | | | | | | | and recognizirable. | ||||
* | | Issue #26177: Fixed the keys() method for Canvas and Scrollbar widgets. | Serhiy Storchaka | 2016-03-09 | 2 | -2/+17 |
|\ \ | |/ | |||||
| * | Issue #26177: Fixed the keys() method for Canvas and Scrollbar widgets. | Serhiy Storchaka | 2016-03-09 | 2 | -2/+17 |
| | | | | | | | | Added few missed tests for configure options. | ||||
* | | Issue #25263: Fixed the tkinter.test.test_tkinter.test_font.FontTest test | Serhiy Storchaka | 2015-11-10 | 1 | -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 test | Serhiy Storchaka | 2015-11-10 | 1 | -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 test | Serhiy Storchaka | 2015-11-10 | 1 | -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 Storchaka | 2015-11-07 | 1 | -3/+4 |
|/ / | |||||
* | | Issue #24408: Fixed test for tkinter.Font on OS X. | Serhiy Storchaka | 2015-06-21 | 1 | -1/+10 |
|\ \ | |/ | | | | | Based on patch by Martin Panter. | ||||
| * | Issue #24408: Fixed test for tkinter.Font on OS X. | Serhiy Storchaka | 2015-06-21 | 1 | -1/+10 |
| | | | | | | | | Based on patch by Martin Panter. | ||||
* | | Issue #24408: Added more tkinter.Font tests. | Serhiy Storchaka | 2015-06-09 | 1 | -5/+65 |
|\ \ | |/ | |||||
| * | Issue #24408: Added more tkinter.Font tests. | Serhiy Storchaka | 2015-06-09 | 1 | -5/+65 |
| | | |||||
* | | Issue #23880: Tkinter's getint() and getdouble() now support Tcl_Obj. | Serhiy Storchaka | 2015-05-06 | 1 | -3/+3 |
| | | | | | | | | Tkinter's getdouble() now supports any numbers (in particular int). | ||||
* | | Use more precise Tcl version checks in tests. | Serhiy Storchaka | 2015-04-23 | 1 | -2/+2 |
|\ \ | |/ | |||||
| * | Use more precise Tcl version checks in tests. | Serhiy Storchaka | 2015-04-23 | 1 | -2/+2 |
| | | |||||
* | | Issue #15133: _tkinter.tkapp.getboolean() now supports Tcl_Obj and always | Serhiy Storchaka | 2015-04-04 | 1 | -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 always | Serhiy Storchaka | 2015-04-04 | 1 | -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 root | Serhiy Storchaka | 2014-08-24 | 7 | -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 root | Serhiy Storchaka | 2014-08-24 | 7 | -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 Storchaka | 2014-07-30 | 1 | -5/+0 |
|\ \ | |/ | | | | | In particular this allows to initialize images from binary data. | ||||
| * | Issue #21580: Now Tkinter correctly handles bytes arguments passed to Tk. | Serhiy Storchaka | 2014-07-30 | 1 | -5/+0 |
| | | | | | | | | In particular this allows to initialize images from binary data. | ||||
| * | Issue #6167: Backported tests for Scrollbar.activate() and Scrollbar.set() | Serhiy Storchaka | 2014-07-23 | 1 | -0/+18 |
| | | | | | | | | from 6ae34a948cb4. | ||||
* | | Issue #6167: Scrollbar.activate() now returns the name of active element if | Serhiy Storchaka | 2014-07-23 | 1 | -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 Storchaka | 2014-06-02 | 1 | -10/+42 |
|\ \ | |/ | | | | | bbox(), curselection() and get(). | ||||
| * | Issue #6181: Fixed minor bugs in tkinter.Listbox methods: | Serhiy Storchaka | 2014-06-02 | 1 | -10/+42 |
| | | | | | | | | bbox(), curselection() and get(). | ||||
* | | Issue #21605: Added tests for Tkinter images. | Serhiy Storchaka | 2014-06-01 | 1 | -0/+341 |
|\ \ | |/ | |||||
| * | Issue #21605: Added tests for Tkinter images. | Serhiy Storchaka | 2014-06-01 | 1 | -0/+341 |
| | | |||||
* | | Fixed new Tkinter tests added in issue #21522 with Tk 8.4. | Serhiy Storchaka | 2014-05-23 | 1 | -6/+13 |
|\ \ | |/ | |||||
| * | Fixed new Tkinter tests added in issue #21522 with Tk 8.4. | Serhiy Storchaka | 2014-05-23 | 1 | -6/+13 |
| | | |||||
* | | Issue #21522: Added Tkinter tests for Listbox.itemconfigure(), | Serhiy Storchaka | 2014-05-23 | 1 | -0/+181 |
|\ \ | |/ | | | | | PanedWindow.paneconfigure(), and Menu.entryconfigure(). | ||||
| * | Issue #21522: Added Tkinter tests for Listbox.itemconfigure(), | Serhiy Storchaka | 2014-05-23 | 1 | -0/+181 |
| | | | | | | | | PanedWindow.paneconfigure(), and Menu.entryconfigure(). | ||||
* | | Issue #20635: Added tests for Tk geometry managers. | Serhiy Storchaka | 2014-04-13 | 1 | -0/+902 |
|\ \ | |/ | |||||
| * | Issue #20635: Added tests for Tk geometry managers. | Serhiy Storchaka | 2014-04-13 | 1 | -0/+902 |
| | | |||||
* | | Issue #20636: Improved the repr of Tkinter widgets. | Serhiy Storchaka | 2014-04-04 | 1 | -0/+5 |
|/ | |||||
* | Issue #19761: Fixed Tkinter tests on OS X. | Serhiy Storchaka | 2014-02-03 | 1 | -4/+5 |
|\ | |||||
| * | Issue #19761: Fixed Tkinter tests on OS X. | Serhiy Storchaka | 2014-02-03 | 1 | -4/+5 |
| | | |||||
* | | Issue #20368: The null character now correctly passed from Tcl to Python. | Serhiy Storchaka | 2014-02-03 | 1 | -0/+18 |
|\ \ | |/ | | | | | Improved error handling in variables-related commands. | ||||
| * | Issue #20368: The null character now correctly passed from Tcl to Python. | Serhiy Storchaka | 2014-02-03 | 1 | -0/+18 |
| | | | | | | | | Improved error handling in variables-related commands. | ||||
* | | tkinter.Text.debug() now always returns 0/1. | Serhiy Storchaka | 2014-01-11 | 1 | -3/+2 |
|\ \ | |/ | | | | | Fixed a regression inroduced in issue #6157. | ||||
| * | tkinter.Text.debug() now always returns 0/1. | Serhiy Storchaka | 2014-01-11 | 1 | -3/+2 |
| | | | | | | | | Fixed a regression inroduced in issue #6157. | ||||
* | | Issue #20067: Tkinter variables now work when wantobjects is false. | Serhiy Storchaka | 2013-12-26 | 1 | -6/+9 |
|\ \ | |/ | |||||
| * | Issue #20067: Tkinter variables now work when wantobjects is false. | Serhiy Storchaka | 2013-12-26 | 1 | -6/+9 |
| | | |||||
* | | test_debug in test_tkinter/test_text no longer fails when wantobjects is false. | Serhiy Storchaka | 2013-12-25 | 1 | -2/+3 |
|\ \ | |/ | |||||
| * | test_debug in test_tkinter/test_text no longer fails when wantobjects is false. | Serhiy Storchaka | 2013-12-25 | 1 | -2/+3 |
| | | |||||
* | | Issue #19733: Temporary disable test_image on MacOSX. | Serhiy Storchaka | 2013-11-23 | 1 | -0/+3 |
|\ \ | |/ |