[issue4622] SequenceMatcher bug with long sequences

2008-12-10 Thread eliben
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

[issue5117] os.path.relpath problem with root drive directory on windows

2009-01-30 Thread eliben
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:') => 

[issue5117] os.path.relpath problem with root drive directory on windows

2009-01-31 Thread eliben
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