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 benhoyt, larry, serhiy.storchaka, vstinner
Date 2016-01-02.17:57:05
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1451757425.39.0.0524932176307.issue25995@psf.upfronthosting.co.za>
In-reply-to
Content
Since 3.5 os.walk() consumes a lot of file descriptors. Its number equals to the deep of directories tree. Since the number of file descriptors is limited, this can cause problems.

This was the main reason for rejecting fwalk-based implementation of os.walk() (issue15200).
History
Date User Action Args
2016-01-02 17:57:05serhiy.storchakasetrecipients: + serhiy.storchaka, vstinner, larry, benhoyt
2016-01-02 17:57:05serhiy.storchakasetmessageid: <1451757425.39.0.0524932176307.issue25995@psf.upfronthosting.co.za>
2016-01-02 17:57:05serhiy.storchakalinkissue25995 messages
2016-01-02 17:57:05serhiy.storchakacreate