summaryrefslogtreecommitdiffstats
path: root/Doc/library/csv.rst
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2012-11-18 10:55:35 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2012-11-18 10:55:35 (GMT)
commita69be2803b25c226a439152ec680d7ee6f5e57f6 (patch)
treea8f7de747617ca7ef3a63dee38b03c8e6374b990 /Doc/library/csv.rst
parentec967246a1cd4665801e5d2bb72fea71a54e481d (diff)
downloadcpython-a69be2803b25c226a439152ec680d7ee6f5e57f6.zip
cpython-a69be2803b25c226a439152ec680d7ee6f5e57f6.tar.gz
cpython-a69be2803b25c226a439152ec680d7ee6f5e57f6.tar.bz2
#16053: document csv.Dialect.strict. Patch by Kushal Das.
Diffstat (limited to 'Doc/library/csv.rst')
-rw-r--r--Doc/library/csv.rst5
1 files changed, 5 insertions, 0 deletions
diff --git a/Doc/library/csv.rst b/Doc/library/csv.rst
index d8df7fc..90261e2 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
--------------