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 | a69be2803b25c226a439152ec680d7ee6f5e57f6 (patch) | |
tree | a8f7de747617ca7ef3a63dee38b03c8e6374b990 /Doc/library/csv.rst | |
parent | ec967246a1cd4665801e5d2bb72fea71a54e481d (diff) | |
download | cpython-a69be2803b25c226a439152ec680d7ee6f5e57f6.zip cpython-a69be2803b25c226a439152ec680d7ee6f5e57f6.tar.gz cpython-a69be2803b25c226a439152ec680d7ee6f5e57f6.tar.bz2 |
#16053: document csv.Dialect.strict. Patch by Kushal Das.
Diffstat (limited to 'Doc/library/csv.rst')
-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 d8df7fc..90261e2 100644 --- a/Doc/library/csv.rst +++ b/Doc/library/csv.rst @@ -341,6 +341,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 -------------- |