[issue13143] os.path.islink documentation is ambiguous

2014-06-22 Thread Roundup Robot
Roundup Robot added the comment: New changeset f463387d2434 by Benjamin Peterson in branch '2.7': clarify that islink only really works if python knows about symlinks (closes #13143) http://hg.python.org/cpython/rev/f463387d2434 New changeset db7887f3e6a2 by Benjamin Peterson in branch '3.4':

[issue13143] os.path.islink documentation is ambiguous

2014-06-07 Thread Yayoi Ukai
Yayoi Ukai added the comment: Documentation is updated to be more clear -- keywords: +patch nosy: +terab Added file: http://bugs.python.org/file35515/mywork.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue13143

[issue13143] os.path.islink documentation is ambiguous

2011-10-10 Thread Eric V. Smith
Changes by Eric V. Smith e...@trueblade.com: -- nosy: +eric.smith, jason.coombs ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue13143 ___ ___

[issue13143] os.path.islink documentation is ambiguous

2011-10-10 Thread Jason R. Coombs
Jason R. Coombs jar...@jaraco.com added the comment: Thanks Garen for the detailed analysis and writeup. The short answer to your question is supported by the Python runtime. Allow me to provide a bit of history. Symlink awareness under Windows was added to Python in Python 3.2, so the

[issue13143] os.path.islink documentation is ambiguous

2011-10-10 Thread Ezio Melotti
Ezio Melotti ezio.melo...@gmail.com added the comment: Symlink awareness under Windows was added to Python in Python 3.2 If they are not available on Windows with 2.7, the doc should get an availability: unix or something similar (depending on where they are actually supported), or mention

[issue13143] os.path.islink documentation is ambiguous

2011-10-09 Thread Garen
New submission from Garen garen.par...@gmail.com: The documentation for os.path.islink says: Return True if path refers to a directory entry that is a symbolic link. Always False if symbolic links are not supported. But what does supported mean? Supported by what? Supported by the OS, or