This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author serhiy.storchaka
Recipients Samson Lee, serhiy.storchaka
Date 2016-10-04.07:45:40
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1475567140.46.0.592477896162.issue28353@psf.upfronthosting.co.za>
In-reply-to
Content
I can't reproduce the issue.

$ mkdir testdir
$ touch testdir/handsoff
$ sudo chown root:root testdir/handsoff
$ sudo chmod 700 testdir/handsoff
$ ln -s handsoff testdir/blah
$ python3.5
>>> import os
>>> list(os.walk('testdir'))
[('testdir', [], ['handsoff', 'blah'])]
>>> list(os.fwalk('testdir'))
[('testdir', [], ['handsoff', 'blah'], 3)]

Ubuntu 16.04, Linux 4.4, tested on ext4 and tmpfs filesystems.
History
Date User Action Args
2016-10-04 07:45:40serhiy.storchakasetrecipients: + serhiy.storchaka, Samson Lee
2016-10-04 07:45:40serhiy.storchakasetmessageid: <1475567140.46.0.592477896162.issue28353@psf.upfronthosting.co.za>
2016-10-04 07:45:40serhiy.storchakalinkissue28353 messages
2016-10-04 07:45:40serhiy.storchakacreate