[issue18767] csv documentation does not note default quote constant

2021-06-11 Thread Andrei Kulakov
Andrei Kulakov added the comment: The docs do say that now: .. attribute:: Dialect.quoting Controls when quotes should be generated by the writer and recognised by the reader. It can take on any of the :const:`QUOTE_\*` constants (see section :ref:`csv-contents`) and defaults to

[issue18767] csv documentation does not note default quote constant

2021-03-14 Thread Irit Katriel
Change by Irit Katriel : -- components: +Library (Lib) keywords: +easy versions: +Python 3.10, Python 3.8, Python 3.9 -Python 2.7, Python 3.3, Python 3.4 ___ Python tracker

[issue18767] csv documentation does not note default quote constant

2013-08-23 Thread Tshepang Lekhonkhobe
Changes by Tshepang Lekhonkhobe tshep...@gmail.com: -- nosy: +tshepang ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue18767 ___ ___

[issue18767] csv documentation does not note default quote constant

2013-08-17 Thread R. David Murray
R. David Murray added the comment: Well, it does say that QUOTE_MINIMAL is the default for the dialect 'quoting' attribute. What it doesn't say is that the default dialect (excel) is exactly the documented default values for all the dialect parameters. (Although having said that, I'm not

[issue18767] csv documentation does not note default quote constant

2013-08-16 Thread Brian McLaughlin
New submission from Brian McLaughlin: Documentation should note default quoting behavior of the csv module is csv.QUOTE_MINIMAL http://hg.python.org/cpython/file/tip/Modules/_csv.c#l420 -- assignee: docs@python components: Documentation files: doc.patch keywords: patch messages: