def __init__(self, *args, **kargs): InheritableSQLObject.__init__(self, *args, **kargs) Model.__init__(self) return
def _init(self, *args, **kargs): # Using __init__ or not calling super _init results in incomplete # objects. Model init will then raise missing _SO_writeLock. InheritableSQLObject._init(self, *args, **kargs) Model.__init__(self) return