diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2012-11-18 10:56:17 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2012-11-18 10:56:17 (GMT) |
commit | 186ab5f4046b55446efcb1c390faba47ae8192f6 (patch) | |
tree | 2b8f1eb835e607074a2f7c3a04e7ad80e1bb9787 /Doc/library/csv.rst | |
parent | eb54deb2d216b63bd5db373e33abbc8cf5cd2aaa (diff) | |
parent | a69be2803b25c226a439152ec680d7ee6f5e57f6 (diff) | |
download | cpython-186ab5f4046b55446efcb1c390faba47ae8192f6.zip cpython-186ab5f4046b55446efcb1c390faba47ae8192f6.tar.gz cpython-186ab5f4046b55446efcb1c390faba47ae8192f6.tar.bz2 |
#16053: merge with 3.2.
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 4f19cee..a20c4be 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 -------------- |