summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2013-11-19 18:17:26 (GMT)
committerR David Murray <rdmurray@bitdance.com>2013-11-19 18:17:26 (GMT)
commit5160da1afc07ab759a95d2b863134a88b9318e65 (patch)
tree5594592d0afa46ea80e4b18569809a284a754578 /Misc
parent0e60f85ce45f119121386adc2527fe66c349b46d (diff)
parentfb099c9ef134166ecaf3905c0d8b2995245f3ded (diff)
downloadcpython-5160da1afc07ab759a95d2b863134a88b9318e65.zip
cpython-5160da1afc07ab759a95d2b863134a88b9318e65.tar.gz
cpython-5160da1afc07ab759a95d2b863134a88b9318e65.tar.bz2
Merge: #19449: Handle non-string keys when generating 'fieldnames' error.
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 75d4bdd..1ceffb1 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -56,6 +56,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 #8402: Added the escape() function to the glob module.
- Issue #17618: Add Base85 and Ascii85 encoding/decoding to the base64 module.