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