From: Ezio Melotti Date: Sun, 18 Nov 2012 10:55:35 +0000 (+0200) Subject: #16053: document csv.Dialect.strict. Patch by Kushal Das. X-Git-Tag: v3.2.4rc1~330 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a69be2803b25c226a439152ec680d7ee6f5e57f6;p=thirdparty%2FPython%2Fcpython.git #16053: document csv.Dialect.strict. Patch by Kushal Das. --- diff --git a/Doc/library/csv.rst b/Doc/library/csv.rst index d8df7fca27be..90261e2b9513 100644 --- a/Doc/library/csv.rst +++ b/Doc/library/csv.rst @@ -341,6 +341,11 @@ Dialects support the following attributes: The default is :const:`False`. +.. attribute:: Dialect.strict + + When ``True``, raise exception :exc:`Error` on bad CSV input. + The default is ``False``. + Reader Objects --------------