-
-
Notifications
You must be signed in to change notification settings - Fork 18.6k
DOC/BUG: fix details for 'quoting' parser parameter #5408
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
DOC/BUG: fix details for 'quoting' parser parameter #5408
Conversation
patricktokeeffe
commented
Nov 1, 2013
@@ -41,7 +41,7 @@ | |||
quoting : int | |||
Controls whether quotes should be recognized. Values are taken from | |||
`csv.QUOTE_*` values. Acceptable values are 0, 1, 2, and 3 for |
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.
how about instead we remove the actual numbers and only suggest you pass the enum-likes? Needlessly complicated otherwise, no?
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'm not opposed. It took a little while to even determine these were swapped.
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.
Do it! :)
How's it look now? |
can you squash this down to a single commit? |
Yeah, sure. Will I need to rebase on master too? |
does this close an issue? |
pls rebase this and can consider for 0.13.1 |
Controls whether quotes should be recognized. Values are taken from | ||
`csv.QUOTE_*` values. Acceptable values are 0, 1, 2, and 3 for | ||
QUOTE_MINIMAL, QUOTE_ALL, QUOTE_NONE, and QUOTE_NONNUMERIC, respectively. | ||
The character to used to denote the start and end of a quoted item. |
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.
'to used to' -> 'used to'
@patricktokeeffe can you rebase and make that small change? |
OK @jreback I think I've finally succeeded without mucking up the repo. Let me know if it needs anything else. |
@jorisvandenbossche ok on formatting? |
Just realized the issue # was missing from the commit log. It's been added & rebased over the last few commits. |
OK! |
DOC/BUG: fix details for 'quoting' parser parameter
thanks |