summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2021-10-09 15:30:54 (GMT)
committerGitHub <noreply@github.com>2021-10-09 15:30:54 (GMT)
commit6f3bc5eee6729197747d324c167da12902fb7c27 (patch)
tree21ca5e46d07a56104e2fe6be029c8a38976616e9 /Misc/NEWS.d
parent87f0156a229e4cda92ad8e50645c5a71030caf7c (diff)
downloadcpython-6f3bc5eee6729197747d324c167da12902fb7c27.zip
cpython-6f3bc5eee6729197747d324c167da12902fb7c27.tar.gz
cpython-6f3bc5eee6729197747d324c167da12902fb7c27.tar.bz2
bpo-20028: Improve error message of csv.Dialect when initializing (GH-28705)
(cherry picked from commit 34bbc87b2ddbaf245fbed6443c3e620f80c6a843) Co-authored-by: Dong-hee Na <donghee.na@python.org>
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r--Misc/NEWS.d/next/Library/2021-10-03-21-14-37.bpo-20028.zBA4RK.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2021-10-03-21-14-37.bpo-20028.zBA4RK.rst b/Misc/NEWS.d/next/Library/2021-10-03-21-14-37.bpo-20028.zBA4RK.rst
new file mode 100644
index 0000000..e756121
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2021-10-03-21-14-37.bpo-20028.zBA4RK.rst
@@ -0,0 +1,2 @@
+Improve error message of :class:`csv.Dialect` when initializing.
+Patch by Vajrasky Kok and Dong-hee Na.