Format the instance as RFC 1123.
(self)
| 422 | return self._to_string("rfc1036") |
| 423 | |
| 424 | def to_rfc1123_string(self) -> str: |
| 425 | """ |
| 426 | Format the instance as RFC 1123. |
| 427 | """ |
| 428 | return self._to_string("rfc1123") |
| 429 | |
| 430 | def to_rfc2822_string(self) -> str: |
| 431 | """ |