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 orsenthil
Recipients ezio.melotti, mbloore, orsenthil
Date 2010-02-12.02:58:48
SpamBayes Score 0.00018697043
Marked as misclassified No
Message-id <1265943529.97.0.834699277018.issue7904@psf.upfronthosting.co.za>
In-reply-to
Content
Hello Mark, 
Thanks for the patch.

However there are reasons why the check is:

"if scheme in uses_netloc and url[:2] == '//':"
It cannot be replaced by just url[:2] == '//' as in your patch.

Different protocols have different parsing requirements. (for e.g. some wish to consider (or act as if), after the scheme, the rest is their path)

The better way is to add 's3' to uses_netloc list and it should be fine too. I shall add it and include your tests. Thanks.
History
Date User Action Args
2010-02-12 02:58:50orsenthilsetrecipients: + orsenthil, ezio.melotti, mbloore
2010-02-12 02:58:49orsenthilsetmessageid: <1265943529.97.0.834699277018.issue7904@psf.upfronthosting.co.za>
2010-02-12 02:58:48orsenthillinkissue7904 messages
2010-02-12 02:58:48orsenthilcreate