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

Method to_rfc3339_string

src/pendulum/datetime.py:436–440  ·  view source on GitHub ↗

Format the instance as RFC 3339.

(self)

Source from the content-addressed store, hash-verified

434 return self._to_string("rfc2822")
435
436 def to_rfc3339_string(self) -> str:
437 """
438 Format the instance as RFC 3339.
439 """
440 return self._to_string("rfc3339")
441
442 def to_rss_string(self) -> str:
443 """

Callers 3

test_to_stringsFunction · 0.80
test_to_rfc3339_stringFunction · 0.80

Calls 1

_to_stringMethod · 0.95

Tested by 3

test_to_stringsFunction · 0.64
test_to_rfc3339_stringFunction · 0.64