diff options
author | Dong-hee Na <donghee.na@python.org> | 2021-10-11 11:08:15 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-11 11:08:15 (GMT) |
commit | ab62051152cb24470056ffaeb9107c8b4311375e (patch) | |
tree | bd0e260c6e68911c50f6483233f183a2e0b14df4 /Doc/library/csv.rst | |
parent | d74da9e140441135a4eddaef9a37f00f32579038 (diff) | |
download | cpython-ab62051152cb24470056ffaeb9107c8b4311375e.zip cpython-ab62051152cb24470056ffaeb9107c8b4311375e.tar.gz cpython-ab62051152cb24470056ffaeb9107c8b4311375e.tar.bz2 |
bpo-20028: Empty escapechar/quotechar is not allowed for csv.Dialect (GH-28833)
Diffstat (limited to 'Doc/library/csv.rst')
-rw-r--r-- | Doc/library/csv.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/library/csv.rst b/Doc/library/csv.rst index 899ce02..3a7817c 100644 --- a/Doc/library/csv.rst +++ b/Doc/library/csv.rst @@ -383,6 +383,8 @@ Dialects support the following attributes: :const:`False`. On reading, the *escapechar* removes any special meaning from the following character. It defaults to :const:`None`, which disables escaping. + .. versionchanged:: 3.11 + An empty *escapechar* is not allowed. .. attribute:: Dialect.lineterminator @@ -402,6 +404,8 @@ Dialects support the following attributes: as the *delimiter* or *quotechar*, or which contain new-line characters. It defaults to ``'"'``. + .. versionchanged:: 3.11 + An empty *quotechar* is not allowed. .. attribute:: Dialect.quoting |