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 bukzor
Recipients Buck.Golemon, ankitoshniwal, bukzor, ezio.melotti, orsenthil
Date 2012-07-06.02:44:36
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1341542676.98.0.853124662549.issue15009@psf.upfronthosting.co.za>
In-reply-to
Content
Let's examine x://

absolute-URI  = scheme ":" hier-part [ "?" query ]
hier-part     = "//" authority path-abempty

So this is okay if authority and path-abempty can both be empty strings.

authority     = [ userinfo "@" ] host [ ":" port ]
host          = IP-literal / IPv4address / reg-name
reg-name      = *( unreserved / pct-encoded / sub-delims )
path-abempty  = *( "/" segment )

Yep.

And the same applies for x:///y, except that path-abempty matches /y
instead of nothing.

This means these are in fact valid urls per RFC3986, counter to your claim.
History
Date User Action Args
2012-07-06 02:44:37bukzorsetrecipients: + bukzor, orsenthil, ezio.melotti, Buck.Golemon, ankitoshniwal
2012-07-06 02:44:36bukzorsetmessageid: <1341542676.98.0.853124662549.issue15009@psf.upfronthosting.co.za>
2012-07-06 02:44:36bukzorlinkissue15009 messages
2012-07-06 02:44:36bukzorcreate