예제 #1
0
 def __init__(self, *args, **kargs):
     InheritableSQLObject.__init__(self, *args, **kargs)
     Model.__init__(self)
     return
예제 #2
0
파일: model.py 프로젝트: roboogle/gtkmvc3
 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