summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2007-03-13 09:32:11 (GMT)
committerGeorg Brandl <georg@python.org>2007-03-13 09:32:11 (GMT)
commit94fe3f58d07f1ae5e9ffb10f149498b09aa12a25 (patch)
treefeb10545d68c22d4b986c9d7e082968dd6e47aa9 /Misc/NEWS
parentceede5c35988264ac2ca012c07a06270f992ac09 (diff)
downloadcpython-94fe3f58d07f1ae5e9ffb10f149498b09aa12a25.zip
cpython-94fe3f58d07f1ae5e9ffb10f149498b09aa12a25.tar.gz
cpython-94fe3f58d07f1ae5e9ffb10f149498b09aa12a25.tar.bz2
Patch #1635454: the csv.DictWriter class now includes the offending
field names in its exception message if you try to write a record with a dictionary containing fields not in the CSV field names list.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 79d242b..33f6d9a 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -168,6 +168,10 @@ Core and builtins
Library
-------
+- Patch #1635454: the csv.DictWriter class now includes the offending
+ field names in its exception message if you try to write a record with
+ a dictionary containing fields not in the CSV field names list.
+
- Patch #1668100: urllib2 now correctly raises URLError instead of
OSError if accessing a local file via the file:// protocol fails.