New submission from Pan Yongzhi :
In the py3k docs howtos table of contents,
http://docs.python.org/py3k/howto/index.html, the link to the article "Idioms
and Anti-Idioms in Python" is gone, but the article is still in the doc. It is
at http://docs.python.org/py3k/howto/doanddont.ht
Changes by Pan Yongzhi :
--
nosy: +fossilet
___
Python tracker
<http://bugs.python.org/issue7391>
___
___
Python-bugs-list mailing list
Unsubscribe:
New submission from Pan Yongzhi :
I am constructing a source directory argument to rsync. It has to end with
slash due to rsync behavior. I use:
os.path.join('/src/dir', os.path.sep)
And run it and realized the source directory becomes '/'. Luckily it is not the
destinati
Pan Yongzhi added the comment:
I know this is working as documented. But working as documented does not mean
it is not a bug.
I cannot deduce that it will append a separator if joining with an empty string
from the documentation. Also, this behavior is implicit, and have to guess.
Either