]> granicus.if.org Git - python/commitdiff
Markup fixes for #7198 patch.
authorR David Murray <rdmurray@bitdance.com>
Sun, 20 Mar 2011 15:18:21 +0000 (11:18 -0400)
committerR David Murray <rdmurray@bitdance.com>
Sun, 20 Mar 2011 15:18:21 +0000 (11:18 -0400)
Doc/library/csv.rst

index 1dd8aa831ba7ad361b849f9bc39dc3a04c25dca9..92ba6da7d107a003e67bf6664f9b48d027f679b5 100644 (file)
@@ -79,8 +79,8 @@ The :mod:`csv` module defines the following functions:
 
    Return a writer object responsible for converting the user's data into delimited
    strings on the given file-like object.  *csvfile* can be any object with a
-   :func:`write` method.  If csvfile is a file object, it should be opened with
-   newline='' [1]_.  An optional *dialect*
+   :func:`write` method.  If *csvfile* is a file object, it should be opened with
+   ``newline=''`` [1]_.  An optional *dialect*
    parameter can be given which is used to define a set of parameters specific to a
    particular CSV dialect.  It may be an instance of a subclass of the
    :class:`Dialect` class or one of the strings returned by the
@@ -466,5 +466,5 @@ done::
 
 .. [1] If ``newline=''`` is not specified, newlines embedded inside quoted fields
    will not be interpreted correctly, and on platforms that use ``\r\n`` linendings
-   on write an extra `\\r` will be added.  It should always be safe to specify
+   on write an extra ``\r`` will be added.  It should always be safe to specify
    ``newline=''``, since the csv module does its own (universal) newline handling.