summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d
diff options
context:
space:
mode:
authorLicht Takeuchi <licht-t@outlook.jp>2017-12-12 09:57:06 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2017-12-12 09:57:06 (GMT)
commit2001900b0c02a397d8cf1d776a7cc7fcb2a463e3 (patch)
tree87317ebf9cebe56052aa7d913f816903604b4c54 /Misc/NEWS.d
parente0720cd9e44d43587e6b6c91fd21d0bb0345ccb9 (diff)
downloadcpython-2001900b0c02a397d8cf1d776a7cc7fcb2a463e3.zip
cpython-2001900b0c02a397d8cf1d776a7cc7fcb2a463e3.tar.gz
cpython-2001900b0c02a397d8cf1d776a7cc7fcb2a463e3.tar.bz2
bpo-32255: Always quote a single empty field when write into a CSV file. (#4769)
This allows to distinguish an empty row from a row consisting of a single empty field.
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r--Misc/NEWS.d/next/Library/2017-12-12-07-29-06.bpo-32255.2bfNmM.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2017-12-12-07-29-06.bpo-32255.2bfNmM.rst b/Misc/NEWS.d/next/Library/2017-12-12-07-29-06.bpo-32255.2bfNmM.rst
new file mode 100644
index 0000000..dafee67
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2017-12-12-07-29-06.bpo-32255.2bfNmM.rst
@@ -0,0 +1,3 @@
+A single empty field is now always quoted when written into a CSV file.
+This allows to distinguish an empty row from a row consisting of a single empty field.
+Patch by Licht Takeuchi.