Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 9c0d5ea

Browse files
committed
Markup fixes for #7198 patch.
1 parent f453deb commit 9c0d5ea

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Doc/library/csv.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,8 @@ The :mod:`csv` module defines the following functions:
7979

8080
Return a writer object responsible for converting the user's data into delimited
8181
strings on the given file-like object. *csvfile* can be any object with a
82-
:func:`write` method. If csvfile is a file object, it should be opened with
83-
newline='' [1]_. An optional *dialect*
82+
:func:`write` method. If *csvfile* is a file object, it should be opened with
83+
``newline=''`` [1]_. An optional *dialect*
8484
parameter can be given which is used to define a set of parameters specific to a
8585
particular CSV dialect. It may be an instance of a subclass of the
8686
:class:`Dialect` class or one of the strings returned by the
@@ -466,5 +466,5 @@ done::
466466

467467
.. [1] If ``newline=''`` is not specified, newlines embedded inside quoted fields
468468
will not be interpreted correctly, and on platforms that use ``\r\n`` linendings
469-
on write an extra `\\r` will be added. It should always be safe to specify
469+
on write an extra ``\r`` will be added. It should always be safe to specify
470470
``newline=''``, since the csv module does its own (universal) newline handling.

0 commit comments

Comments
 (0)