diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2012-11-18 12:55:35 +0200 |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2012-11-18 12:55:35 +0200 |
commit | 355637be326a66cee1da4282b8c730bd7adc8f27 (patch) | |
tree | 6f72ac000416a983659e820c4a6a192959d7d71b | |
parent | 3c9181b927d69ad706ae9af16ce9e74a7dfc86f1 (diff) | |
download | cpython-git-355637be326a66cee1da4282b8c730bd7adc8f27.tar.gz |
#16053: document csv.Dialect.strict. Patch by Kushal Das.
-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 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 -------------- |