Datetime objects are converted to Timestamp without my ...
github.com › pandas-dev › pandasNov 15, 2017 · Creating a dataframe with a list of datetime objects converts them to pandas._libs.tslib.Timestamp.This is undesired. In this simple case it is at least possible to get back a datetime object by list comprehension, dates = [d.to_pydatetime() for d in df["date"]], which I would consider as an unnecessary step and makes the use of a DataFrame somehow obsolete.