#16053: document csv.Dialect.strict.  Patch by Kushal Das.
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 @@
    The default is :const:`False`.
 
 
+.. attribute:: Dialect.strict
+
+   When ``True``, raise exception :exc:`Error` on bad CSV input.
+   The default is ``False``.
+
 Reader Objects
 --------------