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

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

index e82c7de5fc223c09edc5074a1d8b13a7902fe763..9ee77fe951ecfe0003cb60d45b2454e02c2011eb 100644 (file)
@@ -240,7 +240,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()