]> granicus.if.org Git - python/commitdiff
#16053: document csv.Dialect.strict. Patch by Kushal Das.
authorEzio Melotti <ezio.melotti@gmail.com>
Sun, 18 Nov 2012 10:55:35 +0000 (12:55 +0200)
committerEzio Melotti <ezio.melotti@gmail.com>
Sun, 18 Nov 2012 10:55:35 +0000 (12:55 +0200)
Doc/library/csv.rst

index d8df7fca27befef8f6c31da7ec92c0c10cc89e69..90261e2b9513f239243fa22a128d519c34180005 100644 (file)
@@ -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
 --------------