This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author senko
Recipients aaronsw, asandvig, georg.brandl, jjlee, maker, orsenthil, senko
Date 2013-07-06.13:13:46
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1373116426.73.0.198438686628.issue979407@psf.upfronthosting.co.za>
In-reply-to
Content
Checked with 3.4.0 alpha, works fine. Apart from the tests mentioned, I used the following script to check digest auth:

    from urllib import request

    url = 'http://httpbin.org/digest-auth/auth/user/passwd'
    req = request.Request(url)

    password_manager = request.HTTPPasswordMgrWithDefaultRealm()
    password_manager.add_password(None, url, 'user', 'passwd')

    auth_manager = request.HTTPDigestAuthHandler(password_manager)
    opener = request.build_opener(auth_manager)

    request.install_opener(opener)
    handler = request.urlopen(req)

    assert handler.getcode() == 200
History
Date User Action Args
2013-07-06 13:13:46senkosetrecipients: + senko, aaronsw, georg.brandl, jjlee, orsenthil, maker, asandvig
2013-07-06 13:13:46senkosetmessageid: <1373116426.73.0.198438686628.issue979407@psf.upfronthosting.co.za>
2013-07-06 13:13:46senkolinkissue979407 messages
2013-07-06 13:13:46senkocreate