Pandas version checks
Reproducible Example
import pandas as pd
ori_ts = 1719850245.23
pd_date = pd.Timestamp(ori_ts, unit='s')
py_date = pd_date.to_pydatetime()
pd_ts = pd_date.timestamp()
py_ts = py_date.timestamp()
delta = abs(pd_ts - py_ts)
print(delta)
Issue Description
with the same tz and time values the given timestamp is not the same.
I'm in France and the delta between both is 7200 seconds corresponding to the GMT+2 tz
Expected Behavior
In the documentation pd.Timestamp will behave like the datetime, i was expecting to have the same value
Installed Versions
I have installed the 2.2.2 version and i have tried with older version and also with the 1.x version and the result is the same