Home
last modified time | relevance | path

Searched refs:InformationalResponse (Results 1 – 18 of 18) sorted by relevance

/dports/net/py-h11/h11-0.12.0/h11/tests/
H A Dtest_state.py25 cs.process_event(SERVER, InformationalResponse)
92 cs.process_event(SERVER, InformationalResponse)
104 _SWITCH_UPGRADE: InformationalResponse,
121 cs.process_event(SERVER, InformationalResponse)
227 cs.process_event(SERVER, InformationalResponse, _SWITCH_UPGRADE)
H A Dtest_events.py125 ir = InformationalResponse(status_code=100, headers=[("Host", "a")])
131 InformationalResponse(status_code=200, headers=[("Host", "a")])
145 InformationalResponse(status_code=b"100", headers=[], http_version="1.0")
H A Dtest_io.py48 InformationalResponse(
55 InformationalResponse(status_code=101, headers=[], reason=b"Upgrade"),
H A Dtest_connection.py112 data = p.send(SERVER, InformationalResponse(status_code=100, headers=[]))
366 p.send(SERVER, InformationalResponse(status_code=100, headers=[]))
575 InformationalResponse(status_code=101, headers=[("Upgrade", "a")]),
595 InformationalResponse(status_code=101, headers=[("Upgrade", "b")]),
/dports/net/py-h11/h11-0.12.0/h11/
H A D_connection.py219 if type(event) is InformationalResponse and event.status_code == 101:
254 InformationalResponse,
270 if type(event) in (InformationalResponse, Response):
H A D_state.py170 InformationalResponse: SEND_RESPONSE,
172 (InformationalResponse, _SWITCH_UPGRADE): SWITCHED_PROTOCOL,
H A D_events.py152 class InformationalResponse(_ResponseBase): class
H A D_readers.py96 class_ = InformationalResponse if status_code < 200 else Response
/dports/net/py-wsproto/wsproto-1.0.0/test/
H A Dtest_server.py172 ) -> Tuple[h11.InformationalResponse, bytes]:
209 assert response == h11.InformationalResponse(
223 assert response == h11.InformationalResponse(
H A Dtest_client.py118 response = h11.InformationalResponse(
170 response = h11.InformationalResponse(
/dports/www/py-hypercorn/Hypercorn-0.12.0/src/hypercorn/protocol/
H A Dh11.py124 h11.InformationalResponse(
144 h11.InformationalResponse(
283 h11.InformationalResponse(
/dports/net/py-wsproto/wsproto-1.0.0/src/wsproto/
H A Dhandshake.py138 if isinstance(event, h11.InformationalResponse):
281 response = h11.InformationalResponse(
366 self, event: h11.InformationalResponse argument
/dports/net/py-h11/h11-0.12.0/docs/source/
H A Dmake-state-diagrams.py112 CORE_EVENTS = {Request, InformationalResponse,
H A Dapi.rst28 h11.InformationalResponse h11.SEND_RESPONSE
170 .. autoclass:: InformationalResponse
199 * zero or more :class:`InformationalResponse` events,
701 :class:`InformationalResponse` with status ``100 Continue``, but it
717 do_send(conn, h11.InformationalResponse(100, headers=[...]))
773 do_sendall(conn, h11.InformationalResponse(100, ...))
967 :class:`InformationalResponse` with status ``101 Switching
/dports/www/py-hypercorn/Hypercorn-0.12.0/src/hypercorn/
H A Dtyping.py17 H11SendableEvent = Union[h11.Data, h11.EndOfMessage, h11.InformationalResponse, h11.Response]
/dports/www/py-httpcore/httpcore-0.14.3/httpcore/_sync/
H A Dhttp11.py23 h11.InformationalResponse,
/dports/www/py-httpcore/httpcore-0.14.3/httpcore/_async/
H A Dhttp11.py23 h11.InformationalResponse,
/dports/www/py-uvicorn/uvicorn-0.15.0/uvicorn/protocols/http/
H A Dh11_impl.py494 event = h11.InformationalResponse(