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

Method to_cookie_string

src/pendulum/datetime.py:389–393  ·  view source on GitHub ↗

Format the instance as COOKIE.

(self)

Source from the content-addressed store, hash-verified

387 return self._to_string("atom")
388
389 def to_cookie_string(self) -> str:
390 """
391 Format the instance as COOKIE.
392 """
393 return self._to_string("cookie", locale="en")
394
395 def to_iso8601_string(self) -> str:
396 """

Callers 2

test_to_stringsFunction · 0.80
test_to_cookie_stringFunction · 0.80

Calls 1

_to_stringMethod · 0.95

Tested by 2

test_to_stringsFunction · 0.64
test_to_cookie_stringFunction · 0.64