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 an
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