(request)
| 427 | |
| 428 | @asyncio.coroutine |
| 429 | def expect_handler(request): |
| 430 | nonlocal expect_received |
| 431 | expect_received = True |
| 432 | if request.version == HttpVersion11: |
| 433 | request.transport.write(b"HTTP/1.1 100 Continue\r\n\r\n") |
| 434 | |
| 435 | @asyncio.coroutine |
| 436 | def go(): |