(self)
| 421 | return getattr(super(), name) |
| 422 | |
| 423 | def address_string(self) -> str: |
| 424 | if getattr(self, "environ", None): |
| 425 | return self.environ["REMOTE_ADDR"] # type: ignore |
| 426 | |
| 427 | if not self.client_address: |
| 428 | return "<local>" |
| 429 | |
| 430 | return self.client_address[0] |
| 431 | |
| 432 | def port_integer(self) -> int: |
| 433 | return self.client_address[1] |
no outgoing calls
no test coverage detected