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

Method to_rfc1036_string

src/pendulum/datetime.py:418–422  ·  view source on GitHub ↗

Format the instance as RFC 1036.

(self)

Source from the content-addressed store, hash-verified

416 return self._to_string("rfc850")
417
418 def to_rfc1036_string(self) -> str:
419 """
420 Format the instance as RFC 1036.
421 """
422 return self._to_string("rfc1036")
423
424 def to_rfc1123_string(self) -> str:
425 """

Callers 1

test_to_rfc1036_stringFunction · 0.80

Calls 1

_to_stringMethod · 0.95

Tested by 1

test_to_rfc1036_stringFunction · 0.64