Forget about (and possible remove the result of) all the tasks.
(self)
| 665 | return sum(int(result.successful()) for result in self.results) |
| 666 | |
| 667 | def forget(self): |
| 668 | """Forget about (and possible remove the result of) all the tasks.""" |
| 669 | for result in self.results: |
| 670 | result.forget() |
| 671 | |
| 672 | def revoke(self, connection=None, terminate=False, signal=None, |
| 673 | wait=False, timeout=None): |