app/soc/models/base.py
changeset 1032 ed83d42d1ed7
parent 977 d212d5f4c41a
child 1213 365b4a2df40d
equal deleted inserted replaced
1031:9a163d82635d 1032:ed83d42d1ed7
    47   """
    47   """
    48 
    48 
    49   _fields_cache = None
    49   _fields_cache = None
    50 
    50 
    51   def toDict(self):
    51   def toDict(self):
    52     """Returns a dict with all StringProperty values of this entity
    52     """Returns a dict with all StringProperty values of this entity.
    53     """
    53     """
    54 
    54 
    55     result = {}
    55     result = {}
    56 
    56 
    57     for key, value in self.properties().iteritems():
    57     for key, value in self.properties().iteritems():