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 bheklilr
Recipients bheklilr
Date 2011-07-11.16:56:27
SpamBayes Score 1.7659723e-06
Marked as misclassified No
Message-id <1310403388.57.0.795196885284.issue12534@psf.upfronthosting.co.za>
In-reply-to
Content
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):
History
Date User Action Args
2011-07-11 16:56:28bheklilrsetrecipients: + bheklilr
2011-07-11 16:56:28bheklilrsetmessageid: <1310403388.57.0.795196885284.issue12534@psf.upfronthosting.co.za>
2011-07-11 16:56:28bheklilrlinkissue12534 messages
2011-07-11 16:56:27bheklilrcreate