[issue11153] urllib2 basic auth parser handle unquoted realm in WWW-Authenticate header
Changes by Matthew M. Boedicker : -- type: -> behavior ___ Python tracker <http://bugs.python.org/issue11153> ___ ___ Python-bugs-list mailing list Unsubscri
[issue11153] urllib2 basic auth parser handle unquoted realm in WWW-Authenticate header
New submission from Matthew M. Boedicker : I am working with a web server that does not quote the realm in the WWW-Authenticate header. This patch will make the realm parsing handle unquoted realm as well as some other invalid variations. I tried doing it by modifying the regex only but