]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.12] Remove bogus syntax error marker in csv doc (GH-115017) (#115018)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Mon, 5 Feb 2024 04:17:58 +0000 (05:17 +0100)
committerGitHub <noreply@github.com>
Mon, 5 Feb 2024 04:17:58 +0000 (04:17 +0000)
(cherry picked from commit 39ec7fbba84663ab760853da2ac422c2e988d189)

Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
Doc/library/csv.rst

index fd62b225fcebb80ca6c7d5efd2f53ee225481c20..4ee7820585d3a21098aa3a422e66d0d8f049e168 100644 (file)
@@ -244,7 +244,6 @@ The :mod:`csv` module defines the following classes:
 
        with open('students.csv', 'w', newline='') as csvfile:
            writer = csv.writer(csvfile, dialect='unix')
-                                        ^^^^^^^^^^^^^^
 
 
 .. class:: excel()