In my eartraining program, I have the (bad?) habit of using multiple
inheritance:
class ChordBox(gkt.GtkHBox, DataStorage):
def __init__(self, name):
gtk.GtkHBox.__init__(self)
DataStorage.__init__(self, name)
...
...
With 0.7.0-unstable-dont-use, I get:
DataStorage.__init__(self, name)
TypeError: unbound method must be called with class instance 1st
argument
Should I convert to having a DataStorage variable in ChordBox, or will
this
be possible 0.7.0 is finished?
Tom Cato
-
To unsubscribe: echo "unsubscribe" | mail [EMAIL PROTECTED]
- [pygtk] new development snapshot James Henstridge
- Re: [pygtk] new development snapshot Tom Cato Amundsen
- Re: [pygtk] new development snapshot James Henstridge
- Re: [pygtk] new development snapshot James Henstridge
- Re: [pygtk] new development snapshot Tom Cato Amundsen
- Re: [pygtk] new development snapshot James Henstridge
- Re: [pygtk] new development snapshot Tom Cato Amundsen
- Re: [pygtk] new development snapshot James Henstridge
- [pygtk] Position of windows abouf066
