summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSenthil Kumaran <senthil@uthcode.com>2012-09-25 09:37:20 (GMT)
committerSenthil Kumaran <senthil@uthcode.com>2012-09-25 09:37:20 (GMT)
commit49d130227b8ab6e24044e4da3b9c44a68d4e6bea (patch)
tree7262f3b275e1ad480078fd1591bdccb6a835093c /Misc
parent9118a79c7c410d71725cd52cde310c8e224ac8f0 (diff)
parent67b7b98a479a5703a5707b6ea0cf81d3e0b441ea (diff)
downloadcpython-49d130227b8ab6e24044e4da3b9c44a68d4e6bea.zip
cpython-49d130227b8ab6e24044e4da3b9c44a68d4e6bea.tar.gz
cpython-49d130227b8ab6e24044e4da3b9c44a68d4e6bea.tar.bz2
merge 3.2: Issue #16013: Fix CSV Reader parsing issue with ending quote characters. Patch by Serhiy Storchaka.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index a67f7c5..f705688 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -31,6 +31,9 @@ Core and Builtins
Library
-------
+- Issue #16013: Fix CSV Reader parsing issue with ending quote characters.
+ Patch by Serhiy Storchaka.
+
- Issue #15421: Fix an OverflowError in Calendar.itermonthdates() after
datetime.MAXYEAR. Patch by Cédric Krier.