Message149106
In case of authentication error, HTTPError gets initialized without file object and constructor of addinfourl is not called. This means that url attribute is not set and geturl() (inherited from addinfourl) raises AttributeError.
geturl() is not documented as part of HTTPError interface, so I'm not sure if it is correct to expect it to work. And of course this can be worked around by using the HTTPError.filename which always contains the url passed to constructor.
How ever, I have made a simple patch to fix the missing attribute.
There is also Issue5286 with a patch, which makes the http_error_auth_reqed pass the fp to HTTPError making it a file-like object as stated in the documentation. So that would probably be the correct solution.
IMHO it's a bit bad design, when objects interface changes depending on how it was initialized. |
|
Date |
User |
Action |
Args |
2011-12-09 15:54:42 | Keto | set | recipients:
+ Keto |
2011-12-09 15:54:42 | Keto | set | messageid: <1323446082.73.0.0465562779799.issue13567@psf.upfronthosting.co.za> |
2011-12-09 15:54:42 | Keto | link | issue13567 messages |
2011-12-09 15:54:41 | Keto | create | |
|