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 serhiy.storchaka
Date 2012-06-27.08:11:21
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1340784682.62.0.274796197077.issue15200@psf.upfronthosting.co.za>
In-reply-to
Content
Using os.fwalk (if it is available) we can make os.walk more fast.

Microbenchmark:
./python -m timeit -s "from os import walk"  "for x in walk('Lib'): pass"

Results:
Vanilla: 112 msec
Patched: 90.5 msec
History
Date User Action Args
2012-06-27 08:11:22serhiy.storchakasetrecipients: + serhiy.storchaka
2012-06-27 08:11:22serhiy.storchakasetmessageid: <1340784682.62.0.274796197077.issue15200@psf.upfronthosting.co.za>
2012-06-27 08:11:21serhiy.storchakalinkissue15200 messages
2012-06-27 08:11:21serhiy.storchakacreate