commit | 4becf85d54d60605551a338a201b282aa7b64968 | [log] [tgz] |
---|---|---|
author | Benjamin Peterson <benjamin@python.org> | Sun Jun 29 12:58:16 2014 -0700 |
committer | Benjamin Peterson <benjamin@python.org> | Sun Jun 29 12:58:16 2014 -0700 |
tree | dc9fa1246dbb9f6045fbfa59461b69bd9cf1f34b | |
parent | fd3ba7b261d021d07b8e283705c72b9ece7f9d10 [diff] |
don't allow unicode into type_map on Windows (closes #21652) Patch from Vladimir Iofik.
diff --git a/Misc/NEWS b/Misc/NEWS index 4f86a51..982bf30 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -35,6 +35,9 @@ Library ------- +- Issue #21652: Prevent mimetypes.type_map from containing unicode keys on + Windows. + - Issue #21729: Used the "with" statement in the dbm.dumb module to ensure files closing.