summaryrefslogtreecommitdiffstats
path: root/Doc
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)
commit355637be326a66cee1da4282b8c730bd7adc8f27 (patch)
tree6f72ac000416a983659e820c4a6a192959d7d71b /Doc
parent3c9181b927d69ad706ae9af16ce9e74a7dfc86f1 (diff)
downloadcpython-355637be326a66cee1da4282b8c730bd7adc8f27.zip
cpython-355637be326a66cee1da4282b8c730bd7adc8f27.tar.gz
cpython-355637be326a66cee1da4282b8c730bd7adc8f27.tar.bz2
#16053: document csv.Dialect.strict. Patch by Kushal Das.
Diffstat (limited to 'Doc')
-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 1fbc5f2..66b2fb4 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
--------------