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

Method _start_of_day

src/pendulum/datetime.py:825–829  ·  view source on GitHub ↗

Reset the time to 00:00:00.

(self)

Source from the content-addressed store, hash-verified

823 return self.set(minute=59, second=59, microsecond=999999)
824
825 def _start_of_day(self) -> Self:
826 """
827 Reset the time to 00:00:00.
828 """
829 return self.at(0, 0, 0, 0)
830
831 def _end_of_day(self) -> Self:
832 """

Callers

nothing calls this directly

Calls 1

atMethod · 0.95

Tested by

no test coverage detected