[issue12534] Tkinter doesn't support property attributes

2011-07-11 Thread R. David Murray
R. David Murray added the comment: This is not a bug fix, but a feature request. In Python3 the classes are of course new style. So there's nothing to do here, sorry. -- nosy: +r.david.murray resolution: -> out of date stage: -> committed/rejected status: open -> closed __

[issue12534] Tkinter doesn't support property attributes

2011-07-11 Thread Aaron Stevens
Aaron Stevens added the comment: I forgot add that this is a problem only when inheriting from a Tkinter widget, such as a Frame. -- ___ Python tracker ___

[issue12534] Tkinter doesn't support property attributes

2011-07-11 Thread Aaron Stevens
New submission from Aaron Stevens : When using Tkinter in Python 2.6.6, it is impossible to use the new-style properties, as the base classes (Misc, Pack, Place, and Grid) do not use the new style classes. It is easily fixed by changing the class declarations, i.e.: class Misc: becomes cl