Updates the object's attributes according to data passed by pickle.
(self, data_dict)
| 240 | return ret_dict |
| 241 | |
| 242 | def __setstate__(self, data_dict): |
| 243 | """ |
| 244 | Updates the object's attributes according to data passed by pickle. |
| 245 | """ |
| 246 | self.__dict__.update(data_dict) |
| 247 | self.log = self._get_log() |
| 248 | |
| 249 | |
| 250 | def reload_indexes(sender, *args, **kwargs): |