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: v2.7.4rc1~366 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=355637be326a66cee1da4282b8c730bd7adc8f27;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 1fbc5f2bb405..66b2fb4e09b6 100644 --- a/Doc/library/csv.rst +++ b/Doc/library/csv.rst @@ -355,6 +355,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 --------------