commit | 355637be326a66cee1da4282b8c730bd7adc8f27 | [log] [tgz] |
---|---|---|
author | Ezio Melotti <ezio.melotti@gmail.com> | Sun Nov 18 12:55:35 2012 +0200 |
committer | Ezio Melotti <ezio.melotti@gmail.com> | Sun Nov 18 12:55:35 2012 +0200 |
tree | 6f72ac000416a983659e820c4a6a192959d7d71b | |
parent | 3c9181b927d69ad706ae9af16ce9e74a7dfc86f1 [diff] |
#16053: document csv.Dialect.strict. Patch by Kushal Das.
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 @@ The default is :const:`False`. +.. attribute:: Dialect.strict + + When ``True``, raise exception :exc:`Error` on bad CSV input. + The default is ``False``. + Reader Objects --------------