cmp0xff
cmp0xff
- [x] Closes #1428 - [ ] Tests added I copy-pasted the classes from `pandas`. I think we can add the methods when we come up with ideas how to...
This is the list of things that are in [pandas 2.1 release notes](https://pandas.pydata.org/docs/dev/whatsnew/v2.1.0.html) that need to be addressed in pandas-stubs. I have removed the sections `Performance improvements` and `Bug fixes`....
This is the list of things that are in [pandas 2.3 release notes](https://pandas.pydata.org/docs/dev/whatsnew/v2.3.0.html) that need to be addressed in pandas-stubs. I have removed the sections `Performance improvements` and `Bug fixes`....
This is the list of things that are in [pandas 2.2 release notes](https://pandas.pydata.org/docs/dev/whatsnew/v2.2.0.html) that need to be addressed in pandas-stubs. I have removed the sections `Performance improvements` and `Bug fixes`....
The original 2.0 compatibility tracker #624 is very long. Here I list only the unresolved items as of 2025-12-23. This is the list of things that are in pandas 2.0...
## Describe the bug `mypy` thinks `[1]` also fits `SequenceNotStr[str]`. Since `SequenceNotStr` is our own definition, I think it worths to discuss here first, before sending the report to `mypy`....
We need to create issues to keep track of stubs compatibility to new Pandas releases. - [x] 2.0: pandas-dev/pandas-stubs#624 - [ ] We have finished a lot and it might...
## Describe the bug After an assignment and a raise in a loop, `DataFrame.columns` becomes `Never` by `pyright`. See the minimal example below. It is likely a `pyright` bug, but...
For `Series[Timedelta]` and `Series[Timestamp]`, comprehensive tests for arithmetic have been added and passed. We would like to have a parallel set of tests for `TimedeltaIndex` and `DatetimeIndex`. _Originally posted by...
At the moment, nullable Pandas dtypes in Series are recognised as their non-nullable counterparts. Can we make the stubs revealing the distinctions? ```py from typing import assert_type import pandas as...