Miss Islington (bot)
25d20a6503
bpo-27313: Avoid test_ttk_guionly ComboboxTest fail with macOS Cocoa Tk (GH-12011)
...
(cherry picked from commit aeca373b33 )
Co-authored-by: Ned Deily <nad@python.org >
2019-02-23 23:46:20 -08:00
Miss Islington (bot)
1cea3843de
[3.7] Fix checking for bugfix Tcl version. (GH-10185) (GH-10186)
...
(cherry picked from commit 18d57b4d62 )
Co-authored-by: Serhiy Storchaka <storchaka@gmail.com >
2018-10-28 20:57:04 +02:00
Juliette Monsel
bd9c2ce7ac
bpo-34936: Fix TclError in tkinter.Spinbox.selection_element(). (GH-9760) (GH-9957)
...
(cherry picked from commit 1deea5e539 )
2018-10-19 18:20:00 +03:00
Serhiy Storchaka
c7b91d95d8
[3.7] bpo-34189: Add simple tests for new Tk widget options. (GH-8396) (GH-8398)
...
(cherry picked from commit e271ca78e3 )
(cherry picked from commit c75c1e0e8a )
2018-07-22 22:14:15 +03:00
Miss Islington (bot)
42ea522664
bpo-33974: Fix passing special characters to ttk widgets. (GH-7986)
...
Fix passing lists and tuples of strings containing special characters
'"', '\\', '{', '}' and '\n' as options to tkinter.ttk widgets.
(cherry picked from commit 5bb5bbfca8 )
Co-authored-by: Serhiy Storchaka <storchaka@gmail.com >
2018-06-29 23:42:57 -07:00
Miss Islington (bot)
b88f73749d
bpo-33283: Mention PNG as a supported format by Tcl/Tk. (GH-6479)
...
(cherry picked from commit 4b685bf719 )
Co-authored-by: Andrés Delfino <34587441+andresdelfino@users.noreply.github.com >
2018-04-18 11:16:46 -07:00
Miss Islington (bot)
a7b1b847f6
bpo-33096: Fix ttk.Treeview.insert. (GH-6228)
...
Allow ttk.Treeview.insert to insert iid that has a false boolean value.
Note iid=0 and iid=False would be same.
(cherry picked from commit 3ab44c0783 )
Co-authored-by: Garvit Khatri <garvitdelhi@gmail.com >
2018-03-26 01:19:52 -07:00
Miss Islington (bot)
a5303dd9c2
bpo-32857: Raise error when tkinter after_cancel() is called with None. (GH-5701)
...
(cherry picked from commit 74382a3f17 )
Co-authored-by: Cheryl Sabella <cheryl.sabella@gmail.com >
2018-03-04 04:00:33 -08:00
Miss Islington (bot)
105fcbfd6a
bpo-32585: Add tkinter.ttk.Spinbox. (GH-5221) (GH-5592)
...
(cherry picked from commit a48e78a0b7 )
Co-authored-by: Alan D Moore <me@alandmoore.com >
2018-02-09 13:40:14 +02:00
Mike
53f7a7c281
bpo-32297: Few misspellings found in Python source code comments. ( #4803 )
...
* Fix multiple typos in code comments
* Add spacing in comments (test_logging.py, test_math.py)
* Fix spaces at the beginning of comments in test_logging.py
2017-12-14 13:04:53 +02:00
Serhiy Storchaka
2fad102354
bpo-27319, bpo-31508: Document deprecation in Treeview.selection(). ( #3667 )
...
Defer removing old behavior to 3.8.
Document new feature of selection_set() and friends.
2017-09-24 14:34:09 +03:00
Victor Stinner
cd7e9c1b67
ttk: fix LabeledScale and OptionMenu destroy() method ( #3025 )
...
bpo-31135: Call the parent destroy() method even if the used
attribute doesn't exist.
The LabeledScale.destroy() method now also explicitly clears label
and scale attributes to help the garbage collector to destroy all
widgets.
2017-08-08 19:41:21 +02:00
csabella
a568e52733
bpo-25684: ttk.OptionMenu radiobuttons weren't unique ( #2276 )
...
between instances of OptionMenu.
2017-07-31 12:30:09 +03:00
Serhiy Storchaka
a92adf8f07
bpo-30310: Add a test for non-ascii font family. ( #1567 ) ( #1832 )
2017-05-27 17:01:31 +03:00
Vijay Kumar
128641d17e
Fix spelling mistakes in tkinter.py ( #1716 )
...
Ran the docstrings through spell checker, and fixed spelling issues.
2017-05-22 19:23:52 +03:00
Serhiy Storchaka
bdf6b910f9
bpo-29776: Use decorator syntax for properties. ( #585 )
2017-03-19 08:40:32 +02:00
Terry Jan Reedy
0ba0defb00
Issue 28923: Remove editor artifacts from Tix.py,
2016-12-22 00:02:36 -05:00
Terry Jan Reedy
c67983b829
Issue 28923: Remove editor artifacts from Tix.py.
2016-12-21 23:59:47 -05:00
Serhiy Storchaka
016a9acb26
Issue #27939 : Fixed bugs in tkinter.ttk.LabeledScale and tkinter.Scale caused
...
by representing the scale as float value internally in Tk. tkinter.IntVar
now works if float value is set to underlying Tk variable.
2016-10-30 18:52:02 +02:00
Serhiy Storchaka
32c0d3ada5
Issue #27939 : Fixed bugs in tkinter.ttk.LabeledScale and tkinter.Scale caused
...
by representing the scale as float value internally in Tk. tkinter.IntVar
now works if float value is set to underlying Tk variable.
2016-10-30 18:49:52 +02:00
Serhiy Storchaka
b1f5287952
Issue #27025 : Generated names for Tkinter widgets now start by the "!" prefix
...
for readability (was "`").
2016-10-25 09:43:48 +03:00
Serhiy Storchaka
407c8acd90
Issue #25464 : Fixed HList.header_exists() in tkinter.tix module by addin
...
a workaround to Tix library bug.
2016-10-24 23:49:10 +03:00
Serhiy Storchaka
071dec2027
Issue #25464 : Fixed HList.header_exists() in tkinter.tix module by addin
...
a workaround to Tix library bug.
2016-10-24 23:47:28 +03:00
Serhiy Storchaka
1aca3899fb
Issue #27611 : Fixed support of default root window in the tkinter.tix module.
...
Added the master parameter in the DisplayStyle constructor.
2016-09-25 16:52:13 +03:00
Serhiy Storchaka
e6f0199c19
Issue #27611 : Fixed support of default root window in the tkinter.tix module.
2016-09-25 16:46:10 +03:00