-
-
Notifications
You must be signed in to change notification settings - Fork 18.2k
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
CLN: Drop the as_recarray parameter in read_csv #18804
Conversation
Deprecated back in 0.19.0 xref pandas-devgh-13373.
Codecov Report
@@ Coverage Diff @@
## master #18804 +/- ##
==========================================
- Coverage 91.64% 91.62% -0.03%
==========================================
Files 154 154
Lines 51428 51411 -17
==========================================
- Hits 47129 47103 -26
- Misses 4299 4308 +9
Continue to review full report at Codecov.
|
Everything is green now. If there are no objections, I'll merge later today. |
pls wait for my review |
|
||
recs = sarr_from_data(dt, length, buf) | ||
assert(recs.flags.owndata) | ||
|
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.
i believe u can remove
sarr_from_data
_fill_structured_columns
from the codebase as well
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.
Hmm...potentially.
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.
we don’t have flake8 on cython that looks for unused things fyi
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.
Yeah...that's tougher to check, as flake8
works on a file-by-file basis and has no holistic check on the code-base.
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.
GitHub search seems to agree with your belief though.
Was only used for creating the recarray object.
The function was only used in creating a recarray.
The function was only used in creating a recarray.
@jreback : Those two functions have been removed, and all is still green. PTAL. |
thanks @gfyoung |
Deprecated back in 0.19.0
xref #13373.