def __get__(self, inst, cls):
     if inst is None:
         return cls._store
     id = inst.__dict__
     if "_store" not in id:
         Sso.__init__(inst)
     return id["_store"]
Beispiel #2
0
 def __init__(self, **kw):
     SchemaConfigured.__init__(self, **kw)
     Sso.__init__(self)
     self.__keys = PersistentList()
     self.new_key()
Beispiel #3
0
 def __init__(self, **kw):
     SchemaConfigured.__init__(self, **kw)
     Sso.__init__(self)
Beispiel #4
0
 def __get__(self, inst, cls):
     if inst is None: return cls._store
     id = inst.__dict__
     if "_store" not in id: Sso.__init__(inst)
     return id["_store"]
 def __init__(self, **kw):
   SchemaConfigured.__init__(self, **kw)
   Sso.__init__(self)
   self.__keys = PersistentList()
   self.new_key()
 def __init__(self, **kw):
     SchemaConfigured.__init__(self, **kw)
     Sso.__init__(self)