| 547 | |
| 548 | |
| 549 | class AsyncHandler: |
| 550 | param = 0 |
| 551 | |
| 552 | def __init__(self): |
| 553 | markcoroutinefunction(self) |
| 554 | |
| 555 | async def __call__(self, **kwargs): |
| 556 | self.param += 1 |
| 557 | return self.param |
| 558 | |
| 559 | |
| 560 | class AsyncReceiversTests(SimpleTestCase): |
no outgoing calls