[issue12534] Tkinter doesn't support property attributes

Aaron Stevens report at bugs.python.org
Mon Jul 11 18:56:28 CEST 2011


New submission from Aaron Stevens <aaron.stevens at molex.com>:

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
  class Misc(object):

----------
components: Tkinter
messages: 140148
nosy: bheklilr
priority: normal
severity: normal
status: open
title: Tkinter doesn't support property attributes
type: behavior
versions: Python 2.6

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue12534>
_______________________________________


More information about the Python-bugs-list mailing list