-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
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
TST(string dtype): Resolve xfail in test_base.py #60713
Changes from all 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 | ||||||
---|---|---|---|---|---|---|---|---|
|
@@ -533,6 +533,11 @@ def _str_map_nan_semantics( | |||||||
else: | ||||||||
return self._str_map_str_or_object(dtype, na_value, arr, f, mask) | ||||||||
|
||||||||
def view(self, dtype: Dtype | None = None) -> ArrayLike: | ||||||||
if dtype is not None: | ||||||||
raise TypeError("Cannot change data-type for string array.") | ||||||||
Comment on lines
+537
to
+538
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. Are there any dtypes we do want to accept 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 don't think so - the point of NumPy's |
||||||||
return super().view(dtype=dtype) | ||||||||
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. As an aside, I noticed NumPy's documentation on view says:
So I'm assuming we overload the meaning of 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. Not sure what you mean by "otherwise this would fail". I think we have behavior that differs from NumPy here: pandas/pandas/core/arrays/base.py Lines 1874 to 1876 in fa5c255
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. OK good to know we override. It wouldn't make sense otherwise to reinterpret these bytes using NumPy's default behavior (float) |
||||||||
|
||||||||
|
||||||||
# error: Definition of "_concat_same_type" in base class "NDArrayBacked" is | ||||||||
# incompatible with definition in base class "ExtensionArray" | ||||||||
|
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.
Overriding this here, the only thing it does is change the error from NotImplementedError to TypeError compared to the implementation in the base class?
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.
Ah, for non-Arrow StringArray, this avoids getting the
NDArrayBackedExtensionArray.view
implemetation, which has different behaviour compared to the base classExtensionarray.view