.. attribute:: Dialect.skipinitialspace
When :const:`True`, spaces immediately following the *delimiter* are ignored.
- The default is :const:`False`.
+ The default is :const:`False`. When combining ``delimiter=' '`` with
+ ``skipinitialspace=True``, unquoted empty fields are not allowed.
.. attribute:: Dialect.strict
.. rubric:: Footnotes
.. [1] If ``newline=''`` is not specified, newlines embedded inside quoted fields
- will not be interpreted correctly, and on platforms that use ``\r\n`` linendings
+ will not be interpreted correctly, and on platforms that use ``\r\n`` line endings
on write an extra ``\r`` will be added. It should always be safe to specify
``newline=''``, since the csv module does its own
(:term:`universal <universal newlines>`) newline handling.