From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Mon, 5 Feb 2024 04:18:02 +0000 (+0100) Subject: [3.11] Remove bogus syntax error marker in csv doc (GH-115017) (#115019) X-Git-Tag: v3.11.8~14 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7f1c5578bbe9461185715ce162baf37eb58689f5;p=thirdparty%2FPython%2Fcpython.git [3.11] Remove bogus syntax error marker in csv doc (GH-115017) (#115019) (cherry picked from commit 39ec7fbba84663ab760853da2ac422c2e988d189) Co-authored-by: Terry Jan Reedy --- diff --git a/Doc/library/csv.rst b/Doc/library/csv.rst index e82c7de5fc22..9ee77fe951ec 100644 --- a/Doc/library/csv.rst +++ b/Doc/library/csv.rst @@ -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()