summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2024-02-05 04:18:02 (GMT)
committerGitHub <noreply@github.com>2024-02-05 04:18:02 (GMT)
commit7f1c5578bbe9461185715ce162baf37eb58689f5 (patch)
tree9c242406ad506e28ec744b7dc72ccf4cee34d094
parent5ce076fd92306a0c41cf574221b930d54374bb47 (diff)
downloadcpython-7f1c5578bbe9461185715ce162baf37eb58689f5.zip
cpython-7f1c5578bbe9461185715ce162baf37eb58689f5.tar.gz
cpython-7f1c5578bbe9461185715ce162baf37eb58689f5.tar.bz2
[3.11] Remove bogus syntax error marker in csv doc (GH-115017) (#115019)
(cherry picked from commit 39ec7fbba84663ab760853da2ac422c2e988d189) Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
-rw-r--r--Doc/library/csv.rst1
1 files changed, 0 insertions, 1 deletions
diff --git a/Doc/library/csv.rst b/Doc/library/csv.rst
index e82c7de..9ee77fe 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()