(options: FinalRequestOptions)
| 961 | options = FinalRequestOptions(method="get", url="/foo") |
| 962 | |
| 963 | def build_request(options: FinalRequestOptions) -> None: |
| 964 | client = self.client.copy() |
| 965 | client._build_request(options) |
| 966 | |
| 967 | # ensure that the machinery is warmed up before tracing starts. |
| 968 | build_request(options) |
nothing calls this directly
no test coverage detected