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 orsenthil
Date 2012-10-22.15:57:20
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1350921440.5.0.135151130404.issue16300@psf.upfronthosting.co.za>
In-reply-to
Content
The problem is here:

if url[:2] == '//' and url[2:3] != '/' and url[2:12].lower() != 'localhost/':
    raise ValueError("file:// scheme is supported only on localhost")

On Unix like systems url[2:3] == '/', that is path starts with '/' and this ValueError is escaped.
History
Date User Action Args
2012-10-22 15:57:20orsenthilsetrecipients: + orsenthil
2012-10-22 15:57:20orsenthilsetmessageid: <1350921440.5.0.135151130404.issue16300@psf.upfronthosting.co.za>
2012-10-22 15:57:20orsenthillinkissue16300 messages
2012-10-22 15:57:20orsenthilcreate