[issue23978] ttk.Style.element_create using incorrect tk.call syntax

2015-08-06 Thread Terry J. Reedy
Terry J. Reedy added the comment: This looks like it should be an easy for for someone who understands tcl.call syntax. When we add ttk to Idle, I do not expect to use element_create, but maybe someone will want to to create a custom theme. -- nosy: +markroseman -gpolo versions: +Pyth

[issue23978] ttk.Style.element_create using incorrect tk.call syntax

2015-04-17 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- assignee: -> serhiy.storchaka ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue23978] ttk.Style.element_create using incorrect tk.call syntax

2015-04-17 Thread Terry J. Reedy
Terry J. Reedy added the comment: Reproduced on Win7, 3.4.3, with updated import: "from tkinter import ttk". The example should serve as a test. -- nosy: +terry.reedy stage: -> needs patch type: -> behavior versions: +Python 3.4, Python 3.5 ___ Py

[issue23978] ttk.Style.element_create using incorrect tk.call syntax

2015-04-16 Thread Ned Deily
Changes by Ned Deily : -- nosy: +gpolo, serhiy.storchaka type: crash -> ___ Python tracker ___ ___ Python-bugs-list mailing list Unsu

[issue23978] ttk.Style.element_create using incorrect tk.call syntax

2015-04-16 Thread jmorgensen
New submission from jmorgensen: Style.element_create passes all spec elements as a single string into tk.call rather than breaking up arguments into "words." However, it passes the options properly as a list. This causes python to crash with a stacktrace like the one below. > def element_crea