#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
 --------------