Exemplo n.º 1
0
 def _to_serialize_dict_list_serialized_value(value):
     """
     Convert the value to the external (JSON-based) representation.
     """
     return dict([(
         k,
         UtilityConduitMixin._to_serialize_list(v),
     ) for k, v in value.items()])
Exemplo n.º 2
0
 def _to_serialize_dict_list_serialized_value(value):
     """
     Convert the value to the external (JSON-based) representation.
     """
     return dict([(k, UtilityConduitMixin._to_serialize_list(v),) for k, v in value.items()])