-
Couldn't load subscription status.
- Fork 981
Deprecate Series.data #20281
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
Deprecate Series.data #20281
Conversation
|
|
||
| def test_series_data_property_deprecated(): | ||
| s = cudf.Series([1, 2, 3]) | ||
| with pytest.warns(FutureWarning): |
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.
nitpick
| with pytest.warns(FutureWarning): | |
| with pytest.warns(FutureWarning, match=...): |
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.
Sure thing. I'll fold this into #20304
|
/merge |
Description
This could return a private
Bufferobject which I don't think we want to expose.Checklist