| 12 | |
| 13 | |
| 14 | class WebIOFuture: |
| 15 | def __init__(self, coro=None): |
| 16 | self.coro = coro |
| 17 | |
| 18 | def __iter__(self): |
| 19 | result = yield self |
| 20 | return result |
| 21 | |
| 22 | __await__ = __iter__ # make compatible with 'await' expression |
| 23 | |
| 24 | |
| 25 | class _context: |
no outgoing calls
no test coverage detected
searching dependent graphs…