summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d
diff options
context:
space:
mode:
authorBerker Peksag <berker.peksag@gmail.com>2020-09-20 06:38:07 (GMT)
committerGitHub <noreply@github.com>2020-09-20 06:38:07 (GMT)
commit5c0eed7375fdd791cc5e19ceabfab4170ad44062 (patch)
tree7ddeaf0079a48d462f5427618466ad7218272710 /Misc/NEWS.d
parentbfee9fad84531a471fd7864e88947320669f68e2 (diff)
downloadcpython-5c0eed7375fdd791cc5e19ceabfab4170ad44062.zip
cpython-5c0eed7375fdd791cc5e19ceabfab4170ad44062.tar.gz
cpython-5c0eed7375fdd791cc5e19ceabfab4170ad44062.tar.bz2
bpo-12178: Fix escaping of escapechar in csv.writer() (GH-13710)
Co-authored-by: Itay Elbirt <anotahacou@gmail.com>
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r--Misc/NEWS.d/next/Library/2019-05-31-23-54-28.bpo-12178.N6FLCZ.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2019-05-31-23-54-28.bpo-12178.N6FLCZ.rst b/Misc/NEWS.d/next/Library/2019-05-31-23-54-28.bpo-12178.N6FLCZ.rst
new file mode 100644
index 0000000..80e2a7b
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2019-05-31-23-54-28.bpo-12178.N6FLCZ.rst
@@ -0,0 +1,3 @@
+:func:`csv.writer` now correctly escapes *escapechar* when input
+contains *escapechar*. Patch by Catalin Iacob, Berker Peksag,
+and Itay Elbirt.