Issue1717498

classification
Title: os.path.splitdrive incompletely implemented
Type: Severity: normal
Components: None Versions:
Milestone:
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: cgroves, pekka.klarck
Priority: normal Keywords:

Created on 2007-05-11.22:46:45 by pekka.klarck, last changed 2007-05-14.06:12:12 by cgroves.

Messages
msg1593 (view) Author: Pekka Klärck (pekka.klarck) Date: 2007-05-11.22:46:45
Currently this method is implemeted as follows.

def splitdrive(path):
    return '', path

I have patch that ought to make this work also in Windows (the main usecase) and will submit that next.

msg1594 (view) Author: Pekka Klärck (pekka.klarck) Date: 2007-05-11.22:48:45
Patch available at http://jython.org/patches/1717499
msg1595 (view) Author: Charlie Groves (cgroves) Date: 2007-05-14.06:12:12
Patch committed in r3226.
History
Date User Action Args
2007-05-11 22:46:45pekka.klarckcreate