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) #61216

Open
wants to merge 2 commits into
base: main
Choose a base branch
from

Conversation

PedroM4rques
Copy link

@PedroM4rques PedroM4rques commented Apr 2, 2025

Fix for fillna with Out-of-Bounds Datetime Values

Issue: Using fillna on a datetime64[ns] column with an out-of-bounds timestamp (e.g., '0001-01-01') raised an AssertionError instead of the expected OutOfBoundsDatetime.

Fix: Modified the putmask method in pandas/core/internals/blocks.py to catch and re-raise OutOfBoundsDatetime directly, preventing the AssertionError.

Test Added:

  • Created test_fillna_out_of_bounds_datetime in pandas/tests/frame/methods/test_fillna.py.
  • The test:
    • Sets up a DataFrame with a datetime64[ns] column containing NaT.
    • Attempts to fill NaT with '0001-01-01'.
    • Expects OutOfBoundsDatetime.

…d.Timestamp

- Now correctly raises OutOfBoundsDatetime
- Added test_fillna_out_of_bounds_datetime()
@@ -1749,6 +1749,8 @@ def putmask(self, mask, new) -> list[Block]:
try:
# Caller is responsible for ensuring matching lengths
values._putmask(mask, new)
except OutOfBoundsDatetime as e:
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
except OutOfBoundsDatetime as e:
except OutOfBoundsDatetime:

})
df.iloc[0, 0] = None

msg="Cannot cast 0001-01-01 00:00:00 to unit='ns' without overflow"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You can set up pre-commit in the development environment to fix the format checking failures.

@PedroM4rques PedroM4rques requested a review from yuanx749 April 2, 2025 22:11
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

BUG: OverflowError when fillna on DataFrame with a pd.Timestamp
2 participants