-
-
Notifications
You must be signed in to change notification settings - Fork 142
Fix pd.concat to accept None values as input. #858
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
Changes from 3 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,7 +17,10 @@ | |
|
||
# TODO: github.com/pandas-dev/pandas/issues/55023 | ||
import pytest | ||
from typing_extensions import assert_type | ||
from typing_extensions import ( | ||
Never, | ||
assert_type, | ||
) | ||
|
||
from pandas._libs.missing import NAType | ||
from pandas._libs.tslibs import NaTType | ||
|
@@ -49,6 +52,29 @@ def test_types_to_datetime() -> None: | |
) | ||
|
||
|
||
def test_types_concat_none() -> None: | ||
"""Test concatenation with None values.""" | ||
series = pd.Series([7, -5, 10]) | ||
df = pd.DataFrame({"a": [7, -5, 10]}) | ||
|
||
check(assert_type(pd.concat([None, series]), pd.Series), pd.Series) | ||
check(assert_type(pd.concat([None, df]), pd.DataFrame), pd.DataFrame) | ||
check( | ||
assert_type(pd.concat([None, series, df], axis=1), pd.DataFrame), pd.DataFrame | ||
) | ||
|
||
check(assert_type(pd.concat({"a": None, "b": series}), pd.Series), pd.Series) | ||
check(assert_type(pd.concat({"a": None, "b": df}), pd.DataFrame), pd.DataFrame) | ||
check( | ||
assert_type(pd.concat({"a": None, "b": series, "c": df}, axis=1), pd.DataFrame), | ||
pd.DataFrame, | ||
) | ||
|
||
if TYPE_CHECKING_INVALID_USAGE: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @twoertwein can you explain what this block means and why this is needed? Trying to understand what was missing from my tests. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is testing that the type checkers see the code as invalid. Although I don't think the test is constructed correctly.... |
||
assert_type(pd.concat({"a": None}), Never) | ||
assert_type(pd.concat([None]), Never) | ||
Comment on lines
+75
to
+76
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think these tests should be of the form: pd.concat({"a": None}) # type: ignore[some_mypy_error] # pyright: ignore[some_pyright_error]
pd.concat([None]) # type: ignore[some_mypy_error] # pyright: ignore[some_pyright_error] so we are checking that the type checkers see that invalid code as an error. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I believe I tried that first - the issue is that the second call will not be checked as it cannot be reached (by the type checkers). Would need to split it into two functions. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. That makes sense. I think for consistency's sake, we should do that, although I could be convinced otherwise. If we want to use your pattern here, then add a comment to indicate why we can't just check for a specific type checker error based on your comment here. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think we need the I would be inclined to use the |
||
|
||
|
||
def test_types_concat() -> None: | ||
s: pd.Series = pd.Series([0, 1, -10]) | ||
s2: pd.Series = pd.Series([7, -5, 10]) | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
overlaps because of
Iterable[None]