You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
import pandas as pd
pd.Timestamp(pd.Timestamp.min)
Throws: ValueError: Out of bounds nanosecond timestamp: 1-01-01 00:00:00
Pandas version: 0.11.1_dev
Numpy version: 1.7.1
The the min and max methods on the Timestamp class return simple Python datetime objects, but more importantly they do not adhere to the limitations of Timestamps. They return the default datetime(1,1,1) and datetime(9999, 12, 31, 23, 59, 59, 999999) respectively - both of which are well outside of the valid Timestamp range.