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 /Misc | |
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 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2021-10-10-00-25-36.bpo-20028.bPx4Z8.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2021-10-10-00-25-36.bpo-20028.bPx4Z8.rst b/Misc/NEWS.d/next/Library/2021-10-10-00-25-36.bpo-20028.bPx4Z8.rst new file mode 100644 index 0000000..9db15bc --- /dev/null +++ b/Misc/NEWS.d/next/Library/2021-10-10-00-25-36.bpo-20028.bPx4Z8.rst @@ -0,0 +1,2 @@ +Empty escapechar/quotechar is not allowed when initializing +:class:`csv.Dialect`. Patch by Vajrasky Kok and Dong-hee Na. |