[issue42018] winreg SetValue(Ex) should mention integer as an acceptable value

2020-10-12 Thread Kevin Wojniak
New submission from Kevin Wojniak : On https://docs.python.org/3/library/winreg.html For SetValue and SetValueEx is says: > value is a string that specifies the new value. but value can also be an integer if the type is DWORD. Here's a test that shows that: https://github.com/python/cpyt

[issue37900] [urllib] proxy_bypass_registry doesn't handle invalid proxy override values

2019-08-20 Thread Kevin Wojniak
New submission from Kevin Wojniak : proxy_bypass_registry() will split the ProxyOverride registry key by semicolon. Then for each value it uses that value as a regular expression pattern with match(). However, if this value is not a valid regular expression, then match() will throw