This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author ethan.furman
Recipients claytondarwin, ethan.furman, gpolo, markroseman
Date 2011-09-21.22:21:48
SpamBayes Score 0.00020788972
Marked as misclassified No
Message-id <1316643709.07.0.372527146994.issue6549@psf.upfronthosting.co.za>
In-reply-to
Content
The changes to Style.configure were not good.  Corrected so the (possibly empty) result is returned when a query is made but not when configuration is set.

Two patches: one for the element_names issue, one for the configure issue.

Question:  Does it ever make sense to do both a query and a configuration update in the same call?  I don't think it is:

--> ttk.Style.configure('TButton', 'relief', relief='sunken'
'raised'
--> s.configure('TButton','relief')
'raised'

Does it make sense to raise an exception in configure if both query_opt and kw specified?
History
Date User Action Args
2011-09-21 22:21:49ethan.furmansetrecipients: + ethan.furman, gpolo, markroseman, claytondarwin
2011-09-21 22:21:49ethan.furmansetmessageid: <1316643709.07.0.372527146994.issue6549@psf.upfronthosting.co.za>
2011-09-21 22:21:48ethan.furmanlinkissue6549 messages
2011-09-21 22:21:48ethan.furmancreate