summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2012-11-18 12:55:35 +0200
committerEzio Melotti <ezio.melotti@gmail.com>2012-11-18 12:55:35 +0200
commit355637be326a66cee1da4282b8c730bd7adc8f27 (patch)
tree6f72ac000416a983659e820c4a6a192959d7d71b
parent3c9181b927d69ad706ae9af16ce9e74a7dfc86f1 (diff)
downloadcpython-git-355637be326a66cee1da4282b8c730bd7adc8f27.tar.gz
#16053: document csv.Dialect.strict. Patch by Kushal Das.
-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 1fbc5f2bb4..66b2fb4e09 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
--------------