summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2013-11-19 18:25:24 (GMT)
committerR David Murray <rdmurray@bitdance.com>2013-11-19 18:25:24 (GMT)
commiteccf9c2e2f0507bd4893b087c83d197b32c62b43 (patch)
tree157d48700f377d20e62e3c90375603e198e22488 /Misc/NEWS
parentbab2415eab4ff37d33f7921ca4f1b75bde24635d (diff)
downloadcpython-eccf9c2e2f0507bd4893b087c83d197b32c62b43.zip
cpython-eccf9c2e2f0507bd4893b087c83d197b32c62b43.tar.gz
cpython-eccf9c2e2f0507bd4893b087c83d197b32c62b43.tar.bz2
#19449: Handle non-string keys when generating 'fieldnames' error.
Backport from 3.3 6e5afeada7ca.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 77bc5a8..d5ed3c9 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ Core and Builtins
Library
-------
+- Issue #19449: in csv's writerow, handle non-string keys when generating the
+ error message that certain keys are not in the 'fieldnames' list.
+
- Issue #12853: Fix NameError in distutils.command.upload.
- Issue #19523: Closed FileHandler leak which occurred when delay was set.