Example #1
0
 def __init__(self, *args, **kargs):
     InheritableSQLObject.__init__(self, *args, **kargs)
     Model.__init__(self)
     return
Example #2
0
 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