<div class="gmail_quote">Forwarding to python-dev.</div><div class="gmail_quote"><br></div><div class="gmail_quote">Does everybody agree that the following behavior is not a regression, but a feature of os.path.split()?</div>

<div class="gmail_quote"><br></div><div class="gmail_quote"><pre style="white-space:pre-wrap;word-wrap:break-word;color:rgb(0,0,0);font-size:12px;line-height:17.816667556762695px">Python 3:
>>> import os.path as osp
>>> osp.split('//hostname/foo/')
('//hostname/foo/', '')

Python 2:
>>> osp.split('//hostname/foo/')
('//hostname/foo', '')


But Python 3 again:
>>> osp.split('//hostname/foo/bar/')
('//hostname/foo/bar', '')</pre></div><div class="gmail_quote"><div class="im"><br></div><div class=""><div class="h5"><a href="http://bugs.python.org/issue16424" target="_blank">http://bugs.python.org/issue16424</a></div>

</div></div>