New submission from eliben <[EMAIL PROTECTED]>:
Here's a reproduction of the error:
Python 2.5.2 (r252:60911, Oct 20 2008, 09:11:31)
[GCC 3.4.6 20060404 (Red Hat 3.4.6-10)] on linux2
Type "help", "copyright", "credits" or "lic
New submission from eliben :
This is correct:
relpath(r'd:\abc\jho', r'd:\abc')
=> 'jho'
But this isn't:
relpath(r'd:\jho', r'd:\\')
=> '..\jho'
Neither is this:
relpath(r'd:\jho', r'd:')
=>
eliben added the comment:
The problem is with these lines:
start_list = abspath(start).split(sep)
path_list = abspath(path).split(sep)
In case of 'd:\', the split returns two elements, the second empty.
___
Python tracker
<http://bu