From 5386bb08079f616ec05968075a4ffd8c1b7d7b5f Mon Sep 17 00:00:00 2001 From: Terry Jan Reedy Date: Sun, 4 Feb 2024 23:11:31 -0500 Subject: [PATCH] Remove bogus syntax error marker in csv doc (GH-115017) (cherry picked from commit 39ec7fbba84663ab760853da2ac422c2e988d189) Co-authored-by: Terry Jan Reedy --- Doc/library/csv.rst | 1 - 1 file changed, 1 deletion(-) diff --git a/Doc/library/csv.rst b/Doc/library/csv.rst index fd62b225fcebb8..4ee7820585d3a2 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()