Format the instance as ATOM.
(self)
| 381 | return self.format("ddd, MMM D, YYYY h:mm A", locale="en") |
| 382 | |
| 383 | def to_atom_string(self) -> str: |
| 384 | """ |
| 385 | Format the instance as ATOM. |
| 386 | """ |
| 387 | return self._to_string("atom") |
| 388 | |
| 389 | def to_cookie_string(self) -> str: |
| 390 | """ |