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

Method _start_of_minute

src/pendulum/datetime.py:801–805  ·  view source on GitHub ↗

Reset seconds and microseconds to 0.

(self)

Source from the content-addressed store, hash-verified

799 return self.set(microsecond=999999)
800
801 def _start_of_minute(self) -> Self:
802 """
803 Reset seconds and microseconds to 0.
804 """
805 return self.set(second=0, microsecond=0)
806
807 def _end_of_minute(self) -> Self:
808 """

Callers

nothing calls this directly

Calls 1

setMethod · 0.95

Tested by

no test coverage detected