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 mbloore
Date 2010-02-10.23:24:48
SpamBayes Score 0.0018687734
Marked as misclassified No
Message-id <1265844290.89.0.139975092944.issue7904@psf.upfronthosting.co.za>
In-reply-to
Content
urlparse.urlsplit('s3://example/files/photos/161565.jpg')
returns
('s3', '', '//example/files/photos/161565.jpg', '', '')
instead of
('s3', 'example', '/files/photos/161565.jpg', '', '')

according to rfc 3986 's3' is a valid scheme name, so the '://' indicates a URL with netloc and path parts.
History
Date User Action Args
2010-02-10 23:24:51mblooresetrecipients: + mbloore
2010-02-10 23:24:50mblooresetmessageid: <1265844290.89.0.139975092944.issue7904@psf.upfronthosting.co.za>
2010-02-10 23:24:49mbloorelinkissue7904 messages
2010-02-10 23:24:48mbloorecreate