]> granicus.if.org Git - python/commitdiff
bpo-30937: Make usage of newline='' consistent in csv docs (GH-2730)
authorAmmar Askar <ammar_askar@hotmail.com>
Thu, 26 Oct 2017 08:27:46 +0000 (04:27 -0400)
committerBerker Peksag <berker.peksag@gmail.com>
Thu, 26 Oct 2017 08:27:46 +0000 (11:27 +0300)
Doc/library/csv.rst

index 43714f7479283d63a07318af65244f5ecdd01a85..e1290d4c9b5c83bd660013c7fcc6d6f39215e42d 100644 (file)
@@ -172,7 +172,7 @@ The :mod:`csv` module defines the following classes:
    A short usage example::
 
        >>> import csv
-       >>> with open('names.csv') as csvfile:
+       >>> with open('names.csv', newline='') as csvfile:
        ...     reader = csv.DictReader(csvfile)
        ...     for row in reader:
        ...         print(row['first_name'], row['last_name'])
@@ -211,7 +211,7 @@ The :mod:`csv` module defines the following classes:
 
        import csv
 
-       with open('names.csv', 'w') as csvfile:
+       with open('names.csv', 'w', newline='') as csvfile:
            fieldnames = ['first_name', 'last_name']
            writer = csv.DictWriter(csvfile, fieldnames=fieldnames)
 
@@ -270,7 +270,7 @@ The :mod:`csv` module defines the following classes:
 
 An example for :class:`Sniffer` use::
 
-   with open('example.csv') as csvfile:
+   with open('example.csv', newline='') as csvfile:
        dialect = csv.Sniffer().sniff(csvfile.read(1024))
        csvfile.seek(0)
        reader = csv.reader(csvfile, dialect)