diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2024-02-05 04:17:58 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-05 04:17:58 (GMT) |
commit | ae7fa9fa60c7dc446c0681122037ab27adf35b51 (patch) | |
tree | fe9bdffd8d3ea60d4584ded47926be78b4e59f71 | |
parent | 49fbb068d5d9398b0be746cecb8e0fe214b2654b (diff) | |
download | cpython-ae7fa9fa60c7dc446c0681122037ab27adf35b51.zip cpython-ae7fa9fa60c7dc446c0681122037ab27adf35b51.tar.gz cpython-ae7fa9fa60c7dc446c0681122037ab27adf35b51.tar.bz2 |
[3.12] Remove bogus syntax error marker in csv doc (GH-115017) (#115018)
(cherry picked from commit 39ec7fbba84663ab760853da2ac422c2e988d189)
Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
-rw-r--r-- | Doc/library/csv.rst | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Doc/library/csv.rst b/Doc/library/csv.rst index fd62b22..4ee7820 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() |