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 mbloore
Recipients ezio.melotti, mbloore, orsenthil, r.david.murray
Date 2010-02-17.21:09:36
SpamBayes Score 6.361457e-05
Marked as misclassified No
Message-id <1266440978.63.0.0951820809709.issue7904@psf.upfronthosting.co.za>
In-reply-to
Content
Doing a fallback test for // would look like
if scheme in uses_netloc and url[:2] == '//' or url[:2] == '//':

but this is equivalent to 
if url[:2] == '//':

i.e., an authority appears if and only if there is a // after the scheme.

This still allows a uses_netloc scheme to appear without //.

I have attached a patch against Python 2.7, svn revision 78212.  It adds s3 to netloc.
History
Date User Action Args
2010-02-17 21:09:38mblooresetrecipients: + mbloore, orsenthil, ezio.melotti, r.david.murray
2010-02-17 21:09:38mblooresetmessageid: <1266440978.63.0.0951820809709.issue7904@psf.upfronthosting.co.za>
2010-02-17 21:09:37mbloorelinkissue7904 messages
2010-02-17 21:09:37mbloorecreate