コード例 #1
0
ファイル: model.py プロジェクト: gmontcheuil/sppas
 def __json__(self):
     result = collections.OrderedDict(
         __class__=self.__class__.__name__,
     )
     result.update(self._pubdict())
     return asjson(result)
コード例 #2
0
ファイル: model.py プロジェクト: lym0302/sppas
 def __json__(self):
     result = collections.OrderedDict(__class__=self.__class__.__name__, )
     result.update(self._pubdict())
     return asjson(result)
コード例 #3
0
 def asjson(self):
     return asjson(self)
コード例 #4
0
 def __json__(self):
     # preserve order
     return {
         asjson(k): asjson(v)
         for k, v in self.items() if not k.startswith('_')
     }
コード例 #5
0
ファイル: ast.py プロジェクト: gmontcheuil/sppas
 def asjson(self):
     return asjson(self)
コード例 #6
0
ファイル: ast.py プロジェクト: gmontcheuil/sppas
 def __json__(self):
     # preserve order
     return {
         asjson(k): asjson(v)
         for k, v in self.items() if not k.startswith('_')
     }