| 11 | |
| 12 | |
| 13 | class ExampleClass(object): |
| 14 | def __init__(self): |
| 15 | self.counted = 0 |
| 16 | self.last_called = None |
| 17 | |
| 18 | def count(self, back="counted"): |
| 19 | self.counted += 1 |
| 20 | self.last_called = back |
| 21 | return back |
| 22 | |
| 23 | |
| 24 | class TestRateLimit: |
no outgoing calls