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 hynek
Recipients hynek, neologix
Date 2012-05-15.13:29:21
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1337088562.75.0.897017951602.issue14773@psf.upfronthosting.co.za>
In-reply-to
Content
I just realized it doesn't really make sense because if a file disappears for real, we'll get another FileNotFoundException when checking whether it's a symlink and the continue is never reached.

So behold v3. :)

This time, I have tested it by injecting a

if name == 'tmp4':
    import os
    os.unlinkat(topfd, name)

right before the S_ISDIR in fwalk.

Some tests failed because said tmp4 was obviously missing – the old code threw FileNotFoundExceptions. After restoration the whole test suite passes in regression mode.
History
Date User Action Args
2012-05-15 13:29:22hyneksetrecipients: + hynek, neologix
2012-05-15 13:29:22hyneksetmessageid: <1337088562.75.0.897017951602.issue14773@psf.upfronthosting.co.za>
2012-05-15 13:29:22hyneklinkissue14773 messages
2012-05-15 13:29:22hynekcreate