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 toobaz
Recipients BreamoreBoy, orsenthil, toobaz
Date 2014-07-02.22:20:08
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1404339609.12.0.0457732932183.issue16095@psf.upfronthosting.co.za>
In-reply-to
Content
The bug is still present in 2.7.7 and 3.4.1.

By the way, under python 3 the workaround takes the form


class MyHTTPPasswordMgr(urllib.request.HTTPPasswordMgr):
    def find_user_password(self, realm, authuri):
        return "a", "b"

Finally, notice the wrong behaviour of "is_suburi()" mentioned in http://bugs.python.org/msg14444 is still present (and I still suspect it has something to do with this).
History
Date User Action Args
2014-07-02 22:20:09toobazsetrecipients: + toobaz, orsenthil, BreamoreBoy
2014-07-02 22:20:09toobazsetmessageid: <1404339609.12.0.0457732932183.issue16095@psf.upfronthosting.co.za>
2014-07-02 22:20:09toobazlinkissue16095 messages
2014-07-02 22:20:08toobazcreate