summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBrian Curtin <brian.curtin@gmail.com>2010-10-21 14:11:48 (GMT)
committerBrian Curtin <brian.curtin@gmail.com>2010-10-21 14:11:48 (GMT)
commit000f974b44c570ea042e2e61823ae243dfb9b429 (patch)
tree23b8980f26f2caf50dbf43bd0c83a085ef27f0e1 /Misc
parent28928aef2ed23ae038ba2dd12b7adc51fa62805f (diff)
downloadcpython-000f974b44c570ea042e2e61823ae243dfb9b429.zip
cpython-000f974b44c570ea042e2e61823ae243dfb9b429.tar.gz
cpython-000f974b44c570ea042e2e61823ae243dfb9b429.tar.bz2
Fix #10162: Add try/except around _winreg.OpenKey for keys that are
unreadable by all users, e.g., Flash, Silverlight, and Java keys were causing errors. We don't currently have a way to grant/deny permissions for a key via winreg so there are no tests for this.
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 caf1b49..a93cad9 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -43,6 +43,9 @@ Core and Builtins
Library
-------
+- Issue #10163: Skip unreadable registry keys during mimetypes
+ initialization.
+
- logging: Made StreamHandler terminator configurable.
- logging: Allowed filters to be just callables.