HTTP request scheme, which should be "http" or "https".
(self)
| 667 | |
| 668 | @property |
| 669 | def scheme(self) -> str: |
| 670 | """ |
| 671 | HTTP request scheme, which should be "http" or "https". |
| 672 | """ |
| 673 | return self.data.scheme.decode("utf-8", "surrogateescape") |
| 674 | |
| 675 | @scheme.setter |
| 676 | def scheme(self, val: str | bytes) -> None: |
nothing calls this directly
no test coverage detected