Brian Brazil <brian.bra...@gmail.com> added the comment:

The behaviour is a bit more nuanced:
>>> os.path.join('x', '')
'x/'
>>> os.path.join('x', '', 'y')
'x/y'
>>> os.path.join('x', '', 'y', '', '')
'x/y/'
>>> os.path.join('', 'x')
'x'

I'm unsure how to word this best, maybe "non-trailing empty paths are ignored"?

----------
nosy: +bbrazil

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue9921>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to