Should dEvent.init be called or not? (or am I mixed up?)
class dObject(Dummy, autosuper, DoDefaultMixin, PropertyHelperMixin,
EventMixin):
""" The basic ancestor of all dabo objects."""
def __init__(self, properties=None, *args, **kwargs):
self._properties = {}
if self._call_beforeInit:
self._beforeInit()
if self._call_initProperties:
self._initProperties()
class dEvent(dObject):
""" Base class for Dabo events.
def __init__(self, eventObject, uiEvent=None, eventData=None, *args,
**kwargs):
# There isn't any superclass init code, so don't run it
#super(Event, self).__init__()
Carl K
_______________________________________________
Post Messages to: [email protected]
Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-dev
Searchable Archives: http://leafe.com/archives/search/dabo-dev
This message: http://leafe.com/archives/byMID/%(messageid)s