TYP: Fix timedelta64.__divmod__ and timedelta64.__mod__ overloads#28259
Merged
charris merged 2 commits intonumpy:mainfrom Feb 1, 2025
Merged
TYP: Fix timedelta64.__divmod__ and timedelta64.__mod__ overloads#28259charris merged 2 commits intonumpy:mainfrom
timedelta64.__divmod__ and timedelta64.__mod__ overloads#28259charris merged 2 commits intonumpy:mainfrom
Conversation
|
Diff from mypy_primer, showing the effect of this PR on type check results on a corpus of open source code: pandas (https://github.com/pandas-dev/pandas)
+ pandas/core/arrays/timedeltas.py:328: note: def [_TD64ItemT_co: timedelta | int | None] __init__(self, Literal[0], Literal['Y', 'M', b'Y', b'M', 'ns', 'ps', 'fs', 'as', b'ns', b'ps', b'fs', b'as'] | tuple[Literal['Y', 'M', b'Y', b'M', 'ns', 'ps', 'fs', 'as', b'ns', b'ps', b'fs', b'as'], SupportsIndex] = ..., /) -> timedelta64[Literal[0]]
+ pandas/tests/dtypes/test_missing.py:773: note: def [_TD64ItemT_co: timedelta | int | None] __init__(self, Literal[0], Literal['Y', 'M', b'Y', b'M', 'ns', 'ps', 'fs', 'as', b'ns', b'ps', b'fs', b'as'] | tuple[Literal['Y', 'M', b'Y', b'M', 'ns', 'ps', 'fs', 'as', b'ns', b'ps', b'fs', b'as'], SupportsIndex] = ..., /) -> timedelta64[Literal[0]]
|
Member
|
Thanks Joren. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Closes #28256, and fixes incorrect inference of
timedelta64.__[div]mod__if the right-hand-side is zero-ish.