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

Method _end_of_hour

src/pendulum/datetime.py:819–823  ·  view source on GitHub ↗

Set minutes and seconds to 59 and microseconds to 999999.

(self)

Source from the content-addressed store, hash-verified

817 return self.set(minute=0, second=0, microsecond=0)
818
819 def _end_of_hour(self) -> Self:
820 """
821 Set minutes and seconds to 59 and microseconds to 999999.
822 """
823 return self.set(minute=59, second=59, microsecond=999999)
824
825 def _start_of_day(self) -> Self:
826 """

Callers

nothing calls this directly

Calls 1

setMethod · 0.95

Tested by

no test coverage detected