diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2012-11-18 10:56:31 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2012-11-18 10:56:31 (GMT) |
commit | 6ba0666641e14065593290e7185f2f9bb29efb15 (patch) | |
tree | 6068c7959e6cb7135c0d6317dd55ec33b1764464 | |
parent | 9de28f4c0ce464f97451a69fe807ad9a1b80073c (diff) | |
parent | 186ab5f4046b55446efcb1c390faba47ae8192f6 (diff) | |
download | cpython-6ba0666641e14065593290e7185f2f9bb29efb15.zip cpython-6ba0666641e14065593290e7185f2f9bb29efb15.tar.gz cpython-6ba0666641e14065593290e7185f2f9bb29efb15.tar.bz2 |
#16053: merge with 3.3.
-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 -------------- |