diff options
author | andrei kulakov <andrei.avk@gmail.com> | 2022-12-09 16:14:33 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-09 16:14:33 (GMT) |
commit | d0679c12398579fe9f10e78b6332dded119e4697 (patch) | |
tree | 840c814be55fe6579fe099c27bf7b8c2614f85ed /Misc | |
parent | a29a7b9b786d6b928c4bb4e6e683a3788e3ab1c1 (diff) | |
download | cpython-d0679c12398579fe9f10e78b6332dded119e4697.zip cpython-d0679c12398579fe9f10e78b6332dded119e4697.tar.gz cpython-d0679c12398579fe9f10e78b6332dded119e4697.tar.bz2 |
bpo-44512: Fix handling of extrasactions arg to csv.DictWriter with mixed or upper case (#26924)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2022-12-09-10-35-36.bpo-44592.z-P3oe.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2022-12-09-10-35-36.bpo-44592.z-P3oe.rst b/Misc/NEWS.d/next/Library/2022-12-09-10-35-36.bpo-44592.z-P3oe.rst new file mode 100644 index 0000000..7f29060 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2022-12-09-10-35-36.bpo-44592.z-P3oe.rst @@ -0,0 +1,2 @@ +Fixes inconsistent handling of case sensitivity of *extrasaction* arg in +:class:`csv.DictWriter`. |