Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion Doc/library/csv.rst
Original file line number Diff line number Diff line change
Expand Up @@ -446,7 +446,12 @@ describing the format of the CSV file. When creating :class:`reader` or
the :class:`Dialect` class as the dialect parameter. In addition to, or instead
of, the *dialect* parameter, the programmer can also specify individual
formatting parameters, which have the same names as the attributes defined below
for the :class:`Dialect` class.
for the :class:`Dialect` class. Note that the default values given
for the attributes below are for the :class:`excel` dialect, not the :class:`Dialect`
class itself, because :class:`excel` is the default dialect used by the :mod:`csv`
module. When subclassing the :class:`Dialect` class, all of the following attributes
should be specified by your subclass because :class:`Dialect` defaults them all to
:const:`None`.

Dialects support the following attributes:

Expand Down
Loading