Exemplo n.º 1
0
 def __getstate__(self):
     """
     This method must be defined because this class uses slots.
     """
     state = _GeneralExpressionDataImpl.__getstate__(self)
     for i in _GeneralObjectiveData.__pickle_slots__:
         state[i] = getattr(self, i)
     return state
Exemplo n.º 2
0
 def __getstate__(self):
     """
     This method must be defined because this class uses slots.
     """
     state = _GeneralExpressionDataImpl.__getstate__(self)
     for i in _GeneralObjectiveData.__pickle_slots__:
         state[i] = getattr(self,i)
     return state