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 eryksun, jschwar313, paul.moore, serhiy.storchaka, steve.dower, tim.golden, zach.ware
Date 2021-12-15.17:56:20
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1639590980.36.0.304617492949.issue46084@roundup.psfhosted.org>
In-reply-to
Content
os.walk() has been implemented via os.scandir(), but by default it ignores OSErrors raised by os.scandir(), DirEntry.is_dir() and DirEntry.is_symlink(). You can get errors raised by os.scandir() if specify the onerror argument, but errors in DirEntry.is_dir() and DirEntry.is_symlink() are always ignored, so too deep directories or links to directories can be treated as files.
History
Date User Action Args
2021-12-15 17:56:20serhiy.storchakasetrecipients: + serhiy.storchaka, paul.moore, tim.golden, zach.ware, eryksun, steve.dower, jschwar313
2021-12-15 17:56:20serhiy.storchakasetmessageid: <1639590980.36.0.304617492949.issue46084@roundup.psfhosted.org>
2021-12-15 17:56:20serhiy.storchakalinkissue46084 messages
2021-12-15 17:56:20serhiy.storchakacreate