summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSenthil Kumaran <senthil@uthcode.com>2012-09-25 09:30:27 (GMT)
committerSenthil Kumaran <senthil@uthcode.com>2012-09-25 09:30:27 (GMT)
commit67b7b98a479a5703a5707b6ea0cf81d3e0b441ea (patch)
tree159bf3e8c217bfb7bf16ac7bccc3e73dde62399a /Misc
parent9bb56a66c548e84012de141e4665ea39701c1e5f (diff)
downloadcpython-67b7b98a479a5703a5707b6ea0cf81d3e0b441ea.zip
cpython-67b7b98a479a5703a5707b6ea0cf81d3e0b441ea.tar.gz
cpython-67b7b98a479a5703a5707b6ea0cf81d3e0b441ea.tar.bz2
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 3283117..ab3c7d4 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -123,6 +123,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.