(chunks)
| 286 | |
| 287 | |
| 288 | def _h2_request(chunks): |
| 289 | tctx, layer = h2_layer(opts) |
| 290 | for chunk in chunks: |
| 291 | for _ in layer.handle_event(DataReceived(tctx.client, chunk)): |
| 292 | pass |
| 293 | |
| 294 | |
| 295 | # fmt: off |
no test coverage detected
searching dependent graphs…