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 Toilal
Recipients Toilal
Date 2013-12-10.12:50:42
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1386679842.42.0.284091102945.issue19945@psf.upfronthosting.co.za>
In-reply-to
Content
Python 2.7.6 (default, Nov 10 2013, 19:24:18) [MSC v.1500 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> from os.path import split
>>> split('//computer/share')
('//computer', 'share')


Python 3.3.3 (v3.3.3:c3896275c0f6, Nov 18 2013, 21:18:40) [MSC v.1600 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> from os.path import split
>>> split('//computer/share')
('//computer/share', '')

Result from 2.7.6 and 3.3.3 is different. Is it a bugfix from 2.7.6 to 3.3.3, or a regression in 3.3.3 ?

Same issue occurs with backslashes.
History
Date User Action Args
2013-12-10 12:50:42Toilalsetrecipients: + Toilal
2013-12-10 12:50:42Toilalsetmessageid: <1386679842.42.0.284091102945.issue19945@psf.upfronthosting.co.za>
2013-12-10 12:50:42Toilallinkissue19945 messages
2013-12-10 12:50:42Toilalcreate