Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BUG: OverflowError when fillna on DataFrame with a pd.Timestamp #61208

Open
3 tasks done
thecurve8 opened this issue Mar 31, 2025 · 2 comments · May be fixed by #61216
Open
3 tasks done

BUG: OverflowError when fillna on DataFrame with a pd.Timestamp #61208

thecurve8 opened this issue Mar 31, 2025 · 2 comments · May be fixed by #61216
Assignees
Labels
Bug Error Reporting Incorrect or improved errors from pandas Timestamp pd.Timestamp and associated methods

Comments

@thecurve8
Copy link

thecurve8 commented Mar 31, 2025

Pandas version checks

  • I have checked that this issue has not already been reported.

  • I have confirmed this bug exists on the latest version of pandas.

  • I have confirmed this bug exists on the main branch of pandas.

Reproducible Example

import pandas as pd

df = pd.DataFrame({
'datetime' : pd.date_range('1/1/2011', periods=3, freq='h'),
'value' : [1,2,3]
})

df.iloc[0,0] = None
df.fillna(pd.Timestamp('0001-01-01'), inplace=True)

Issue Description

Issue is similar to this closed issue without a reproducible example.

A DataFrame that has a column with datetime64[ns] with NaT gets an error if trying to fill null values with a pd.Timestamp that lies outside the range of the given precision.

Expected Behavior

The null values in the DataFrame should be replaced with the provided TimeStamp or an error should be provided to the user that the Timestamps have incompatible precisions and ranges.

Installed Versions

INSTALLED VERSIONS

commit : 0691c5c
python : 3.10.8
python-bits : 64
OS : Windows
OS-release : 10
Version : 10.0.17763
machine : AMD64
processor : Intel64 Family 6 Model 143 Stepping 8, GenuineIntel
byteorder : little
LC_ALL : None
LANG : None
LOCALE : German_Switzerland.1252

pandas : 2.2.3
numpy : 2.2.4
pytz : 2025.2
dateutil : 2.9.0.post()
pip : 25.0.1
Cython : None
sphinx : None
IPython : None
adbc-driver-postgresql: None
adbc-driver-sqlite : None
bs4 : None
blosc : None
bottleneck : None
dataframe-api-compat : None
fastparquet : None
fsspec : None
html5lib : None
hypothesis : None
gcsfs : None
jinja2 : None
lxml.etree : None
matplotlib : None
numba : None
numexpr : None
odfpy : None
openpyxl : None
pandas_gbq : None
psycopg2 : None
pymysql : None
pyarrow : None
pyreadstat : None
pytest : None
python-calamine : None
pyxlsb : None
s3fs : None
scipy : None
sqlalchemy : None
tables : None
tabulate : None
xarray : None
xlrd : None
xlsxwriter : None
zstandard : None
tzdata : 2025.2
qtpy : None
pyqt5 : None

@thecurve8 thecurve8 added Bug Needs Triage Issue that has not been reviewed by a pandas team member labels Mar 31, 2025
@rhshadrach
Copy link
Member

Thanks for the report! Confirmed on main, part of the stack has the error:

pandas._libs.tslibs.np_datetime.OutOfBoundsDatetime: Cannot cast 0001-01-01 00:00:00 to unit='ns' without overflow.

which I believe should be what is raised here. Further investigations and PRs to fix are welcome!

@rhshadrach rhshadrach added Error Reporting Incorrect or improved errors from pandas Timestamp pd.Timestamp and associated methods and removed Needs Triage Issue that has not been reviewed by a pandas team member labels Mar 31, 2025
@PedroM4rques
Copy link

take

PedroM4rques added a commit to PedroM4rques/pandas that referenced this issue Apr 1, 2025
…d.Timestamp

Now raises OutOfBoundsDatetime.
PedroM4rques added a commit to PedroM4rques/pandas that referenced this issue Apr 1, 2025
…d.Timestamp

- Now correctly raises OutOfBoundsDatetime
- Added test_fillna_out_of_bounds_datetime()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Bug Error Reporting Incorrect or improved errors from pandas Timestamp pd.Timestamp and associated methods
Projects
None yet
3 participants