diff options
author | Stanley <46876382+slateny@users.noreply.github.com> | 2022-10-07 18:15:34 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-07 18:15:34 (GMT) |
commit | 676d8ef3806758bcd1d3fd84a746c8a9b64480d0 (patch) | |
tree | c381acae7c50e3edb4ad845a9fcf09872dd93173 /Doc/library | |
parent | 4a74e6ab3885e7906cc5e0b15addc7779bc76249 (diff) | |
download | cpython-676d8ef3806758bcd1d3fd84a746c8a9b64480d0.zip cpython-676d8ef3806758bcd1d3fd84a746c8a9b64480d0.tar.gz cpython-676d8ef3806758bcd1d3fd84a746c8a9b64480d0.tar.bz2 |
gh-65496: Correct wording on csv's skipinitialspace argument (#96170)
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/csv.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/csv.rst b/Doc/library/csv.rst index 0cab95e..41f1150 100644 --- a/Doc/library/csv.rst +++ b/Doc/library/csv.rst @@ -420,7 +420,7 @@ Dialects support the following attributes: .. attribute:: Dialect.skipinitialspace - When :const:`True`, whitespace immediately following the *delimiter* is ignored. + When :const:`True`, spaces immediately following the *delimiter* are ignored. The default is :const:`False`. |