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 techtonik
Recipients techtonik
Date 2012-11-07.06:15:32
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1352268933.45.0.882120414377.issue16424@psf.upfronthosting.co.za>
In-reply-to
Content
Windows.

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', '')
History
Date User Action Args
2012-11-07 06:15:33techtoniksetrecipients: + techtonik
2012-11-07 06:15:33techtoniksetmessageid: <1352268933.45.0.882120414377.issue16424@psf.upfronthosting.co.za>
2012-11-07 06:15:33techtoniklinkissue16424 messages
2012-11-07 06:15:32techtonikcreate