-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
BUG: Fix typo-related bug to resolve #9266 #10576
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
Conversation
columns = ["time", "pri", "pgn", "dst", "src","data"]) | ||
|
||
# Hacky fix for dst column dtype | ||
expected.dst = expected.dst.astype(object) |
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.
although this works, the canoncial way to specify is:
expected['dst'] = expected['dst'].astype(object)
pls add a note in whatsnew/v0.17.0 |
Thanks for the comments — will try to get to these changes tonight PT or early tomorrow PT. |
so this lgtm. pls squash and ping when green. |
sorry. pls add a release note in whatsnew/0.17.0. refernce the original issue. |
Fixed typo in parsers.py BUG: Fixed typo-related bug to resolve pandas-dev#9266 Fixed column selection in test cases
36d1fd7
to
613aff5
Compare
Poops. I messed the |
closes #9266
Tried replicating the test case provided in the original issue. Let me know if it needs any changes or fixes.