-
-
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
BUG: read_table with full line comment and delim_whitespace=True #8115
Comments
iirc this is only implemted in master (not 0.14.1) as it is an API change for a couple of reasons pls check |
I just installed from master (0.14.1.dev) and the behavior of my example has not changed. |
not merged yet |
@jreback It's a bit confusing, as we split the comment part of that PR #7470 into a new PR, which is included in 0.14.1: #7582 There seems to be a bug in
|
the associated pr is not merged yet |
Which PR is not merged? #7582 is merged, and following the whatsnew entry in that PR, the above example should work |
#7470 it was split out |
cc @AmrAS1 |
Oh, I see. This isn't an issue with the PR splitup, it actually is a bug--the C tokenizer uses a different function for whitespace-delimited reading, and evidently I forgot to change line comment behavior there. This should be easily fixable, I'll start a new PR to address this. |
I expect the following to produce a DataFrame with 3 rows, 5 columns and no NaNs. Instead it produces 5 rows with the comment lines filled with NaNs. Pandas version 0.14.1.
The text was updated successfully, but these errors were encountered: