Forget any cached values. The next time :attr:`call` is accessed, all plugins are re-applied.
(self)
| 525 | return self._make_callback() |
| 526 | |
| 527 | def reset(self): |
| 528 | """ Forget any cached values. The next time :attr:`call` is accessed, |
| 529 | all plugins are re-applied. """ |
| 530 | self.__dict__.pop('call', None) |
| 531 | |
| 532 | def prepare(self): |
| 533 | """ Do all on-demand work immediately (useful for debugging).""" |