pd.Timestamp.normalize
pandasTimestamp.normalize()
Example Usage
>>> @bodo.jit
... def f():
... ts1 = pd.Timestamp(year=2021, month=12, day=9, hour = 9, minute=57, second=44, microsecond=114123).normalize()
... return (ts1, ts2)
>>> f()
Timestamp('2021-12-09 00:00:00')