Re: [Tutor] Adding attributes to imported class

2005-07-07 Thread Michael Lange
On Thu, 07 Jul 2005 11:03:00 +1200 (NZST) [EMAIL PROTECTED] wrote: > Quoting Michael Lange <[EMAIL PROTECTED]>: > > > I'm trying to write a python wrapper for the tkDnD Tk extension to add > > drag and drop support > > Hi Michael, > > Just a side issue --- tkDnD seems to be broken in python 2.4

Re: [Tutor] Adding attributes to imported class

2005-07-06 Thread jfouhy
Quoting Michael Lange <[EMAIL PROTECTED]>: > I'm trying to write a python wrapper for the tkDnD Tk extension to add > drag and drop support Hi Michael, Just a side issue --- tkDnD seems to be broken in python 2.4: see bug 1164742, http://sourceforge.net/tracker/index.php?func=detail&aid=1164742&

[Tutor] Adding attributes to imported class

2005-07-06 Thread Michael Lange
Hello list, I'm trying to write a python wrapper for the tkDnD Tk extension to add drag and drop support to Tkinter. Looking for a way to give all widgets access to the newly defined dnd methods I came to create a subclass of Tkinter.Tk() and pass the dnd methods to Tkinter.BaseWidget() (all T