diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2012-11-18 10:55:35 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2012-11-18 10:55:35 (GMT) |
commit | 355637be326a66cee1da4282b8c730bd7adc8f27 (patch) | |
tree | 6f72ac000416a983659e820c4a6a192959d7d71b /Doc | |
parent | 3c9181b927d69ad706ae9af16ce9e74a7dfc86f1 (diff) | |
download | cpython-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.rst | 5 |
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 -------------- |