[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 :co

[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 : -- nosy: +tshepang ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mai

[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 100

[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: 195448