diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2024-02-05 04:11:31 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-05 04:11:31 (GMT) |
commit | 39ec7fbba84663ab760853da2ac422c2e988d189 (patch) | |
tree | 9cf203729851777ff442227c70bcfdd0b319d47c /Doc | |
parent | e207cc181fbb0ceb30542fd0d68140c916305f57 (diff) | |
download | cpython-39ec7fbba84663ab760853da2ac422c2e988d189.zip cpython-39ec7fbba84663ab760853da2ac422c2e988d189.tar.gz cpython-39ec7fbba84663ab760853da2ac422c2e988d189.tar.bz2 |
Remove bogus syntax error marker in csv doc (#115017)
Diffstat (limited to 'Doc')
-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() |