(self, state)
| 768 | return self.func(*new_argspec) |
| 769 | |
| 770 | def __setstate__(self, state): |
| 771 | slots = self.__class__.get_all_slots() |
| 772 | for sl, val in zip(slots, state): |
| 773 | setattr(self, sl, val) |
| 774 | |
| 775 | def __getstate__(self): |
| 776 | slots = self.__class__.get_all_slots() |
no test coverage detected