-
-
Notifications
You must be signed in to change notification settings - Fork 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
depr(python, rust!): Rename write_csv
parameter quote
to quote_char
#11583
depr(python, rust!): Rename write_csv
parameter quote
to quote_char
#11583
Conversation
So, aligning However, I'd revert the change from |
I agree that it feels unwieldy, but I am in strong favor of consistency here. fwiw: in I would strongly suggest to make up our minds ;-) |
…sv_arguments # Conflicts: # py-polars/tests/unit/namespaces/test_meta.py
Yup; I'd suggest making it |
Aaaargh, all that tedious work 😠 ... Let's see what I can easily revert. |
I think |
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.
Thanks for this! A few comments - some can probably be done in follow-up PRs if you prefer.
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.
Great stuff, really appreciate the great attention to detail - that saves a lot of review cycles!
write_csv
parameter quote
to quote_char
Nice one :) |
closes #11545.
I left
line_terminator
forsink_csv
/write_csv
. Andeol_char
forread_csv
/scan_csv
. The reason is that forsink
/write
this isn't necessarily a character, but can be a string.I adjusted the docs to explain this -hopefully- better for
read
/scan
.Adjusted
delimiter
->separator
,quote
->quote_char
,comment
->comment_char
where they were not the target.