Send 103 Early Hints over HTTP/2.
(headers)
| 580 | |
| 581 | # Replace wsgi.early_hints with HTTP/2-specific version |
| 582 | def send_early_hints_h2(headers): |
| 583 | """Send 103 Early Hints over HTTP/2.""" |
| 584 | h2_conn.send_informational(stream_id, 103, headers) |
| 585 | |
| 586 | environ["wsgi.early_hints"] = send_early_hints_h2 |
| 587 |
nothing calls this directly
no test coverage detected