MCPcopy
hub / github.com/urllib3/urllib3 / RequestHistory

Class RequestHistory

src/urllib3/util/retry.py:33–38  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

31
32# Data structure for representing the metadata of requests that result in a retry.
33class RequestHistory(typing.NamedTuple):
34 method: str | None
35 url: str | None
36 error: Exception | None
37 status: int | None
38 redirect_location: str | None
39
40
41class Retry:

Calls

no outgoing calls