Example #1
0
    def __init__(self, ups = 0, downs = 0, date = None, deleted = False,
                 spam = False, id = None, descendant_karma = 0, **attrs):

        Thing.__init__(self, ups, downs, date, deleted, spam, id, **attrs)

        with self.safe_set_attr:
            self._descendant_karma = descendant_karma
Example #2
0
 def __init__(self, *a, **kw):
     Thing.__init__(self, *a, **kw)
Example #3
0
 def __init__(self, *a, **kw):
     Thing.__init__(self, *a, **kw)
 def __init__(self, config):
     Thing.__init__(self)
     Printable.__init__(self)
     self.config = config
     self.wikipage = WikiPageCached(config)
Example #5
0
 def __init__(self, config):
     Thing.__init__(self)
     Printable.__init__(self)
     self.config = config
     self.wikipage = WikiPageCached(config)