MCPcopy Index your code
hub / github.com/python-pendulum/pendulum / to_rfc1123_string

Method to_rfc1123_string

src/pendulum/datetime.py:424–428  ·  view source on GitHub ↗

Format the instance as RFC 1123.

(self)

Source from the content-addressed store, hash-verified

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 """

Callers 1

test_to_rfc1123_stringFunction · 0.80

Calls 1

_to_stringMethod · 0.95

Tested by 1

test_to_rfc1123_stringFunction · 0.64