From a69be2803b25c226a439152ec680d7ee6f5e57f6 Mon Sep 17 00:00:00 2001 From: Ezio Melotti Date: Sun, 18 Nov 2012 12:55:35 +0200 Subject: [PATCH] #16053: document csv.Dialect.strict. Patch by Kushal Das. --- Doc/library/csv.rst | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Doc/library/csv.rst b/Doc/library/csv.rst index d8df7fca27b..90261e2b951 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 --------------