Buck Golemon <b...@yelp.com> added the comment:

Well i think the real issue is that you can't enumerate the protocals that "use 
netloc". All protocols are allowed to have a netloc. the smb: protocol 
certainly does, but it's not in the list.

The core issue is that smb:/foo and smb:///foo are different urls, and should 
be represented differently when split. The /// form has a netloc, it's just the 
empty-string. The single-slash form has no netloc, so I propose that 
urlsplit('smb:/foo') return SplitResult(scheme='smb', netloc=None, path='/foo', 
query='', fragment='')

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue15009>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to