[issue24147] Dialect class defaults are not documented.

2021-05-08 Thread So Ukiyama
So Ukiyama added the comment: I created a PR which apply Brandon Milam's patch. So If I have offended you with my rudeness, I hope you will forgive me for taking this down. -- ___ Python tracker

[issue24147] Dialect class defaults are not documented.

2021-05-08 Thread So Ukiyama
Change by So Ukiyama : -- keywords: +patch nosy: +uniocto nosy_count: 7.0 -> 8.0 pull_requests: +24641 stage: needs patch -> patch review pull_request: https://github.com/python/cpython/pull/25989 ___ Python tracker

[issue24147] Dialect class defaults are not documented.

2021-03-22 Thread Irit Katriel
Irit Katriel added the comment: Brandon's patch has not been applied, it needs to be converted into a git PR. -- keywords: +easy -patch nosy: +iritkatriel versions: +Python 3.10 -Python 3.4, Python 3.5 ___ Python tracker

[issue24147] Dialect class defaults are not documented.

2016-04-26 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +berker.peksag ___ Python tracker ___ ___

[issue24147] Dialect class defaults are not documented.

2015-05-29 Thread Mik
Mik added the comment: I think it's clearer that way. Thank you. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue24147 ___ ___ Python-bugs-list

[issue24147] Dialect class defaults are not documented.

2015-05-29 Thread Brandon Milam
Brandon Milam added the comment: Here I added on to the Dialects and Formatting Parameters paragraph explaining that the defaults listed are for the excel dialect and that all the attributes need to be specified if the user is wanting to create custom dialects through sub-classing. I will

[issue24147] Dialect class defaults are not documented.

2015-05-29 Thread Brandon Milam
Changes by Brandon Milam jmilam...@gmail.com: Added file: http://bugs.python.org/file39553/csv.html ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue24147 ___

[issue24147] Dialect class defaults are not documented.

2015-05-28 Thread Mik
Mik added the comment: Hi, I have just read the documentation once again. The problem is that it specifies that the default value for Dialect.doublequote is True : quoteControls how instances of quotechar appearing inside a field should be themselves be quoted. When True, the character is

[issue24147] Dialect class defaults are not documented.

2015-05-28 Thread Brandon Milam
Brandon Milam added the comment: Hi all, I've been looking at this bug and am ready to start putting in some work on it but I have some questions about what is wanting to be done. From what I can tell these are the possible tasks for this issue. - Add to the docs under the dialect section

[issue24147] Dialect class defaults are not documented.

2015-05-17 Thread Skip Montanaro
Skip Montanaro added the comment: The defaults for the Dialect class are documented: https://docs.python.org/2/library/csv.html#dialects-and-formatting-parameters I think the problem is mostly that csv.Dialect must be subclassed. You can't use it directly, and if you subclass it as MiK did,

[issue24147] Dialect class defaults are not documented.

2015-05-17 Thread R. David Murray
R. David Murray added the comment: Yes, I think the documentation should be improved. -- assignee: - docs@python components: +Documentation -Library (Lib) nosy: +docs@python, r.david.murray resolution: not a bug - stage: - needs patch status: closed - open title: doublequote are not