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 terry.reedy
Recipients ezio.melotti, kaba2, kevin.chen, kushal.das, larry, mhammond, serhiy.storchaka, terry.reedy
Date 2012-11-12.20:11:44
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1352751104.32.0.195510942649.issue15880@psf.upfronthosting.co.za>
In-reply-to
Content
Serhiy claims that the commit of Mark's version of your patch in #5799 fixed this in 3.1. Retesting in IDLE, 3.3, Win7:

>>> import os
>>> d = '//?/e:/python-test/dir'
>>> d = os.path.split(d)[0]
>>> d
'//?/e:/python-test'
>>> d = os.path.split(d)[0]
>>> d
'//?/e:/'
>>> d = os.path.split(d)[0]
>>> d
'//?/e:/'

So the splitting ends where Kalle agrees it should.
History
Date User Action Args
2012-11-12 20:11:44terry.reedysetrecipients: + terry.reedy, mhammond, larry, ezio.melotti, serhiy.storchaka, kushal.das, kevin.chen, kaba2
2012-11-12 20:11:44terry.reedysetmessageid: <1352751104.32.0.195510942649.issue15880@psf.upfronthosting.co.za>
2012-11-12 20:11:44terry.reedylinkissue15880 messages
2012-11-12 20:11:44terry.reedycreate