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 nvetoshkin
Recipients Trundle, giampaolo.rodola, loewis, neologix, nvetoshkin, pitrou, socketpair
Date 2011-03-07.13:57:52
SpamBayes Score 0.00027731224
Marked as misclassified No
Message-id <1299506273.36.0.247349336047.issue11406@psf.upfronthosting.co.za>
In-reply-to
Content
Glibc's readdir() and readdir_r() already do caching, so getdents() syscall is called only once on my '/etc' directory. Should we include another caching level in xlistdir() function?
On the other hand, we don't know anything about caches at glibc's level, i.e. we can't tell if our next call to readdir() will result in syscall or even I/O (we could possible release GIL for that).
History
Date User Action Args
2011-03-07 13:57:53nvetoshkinsetrecipients: + nvetoshkin, loewis, pitrou, giampaolo.rodola, Trundle, neologix, socketpair
2011-03-07 13:57:53nvetoshkinsetmessageid: <1299506273.36.0.247349336047.issue11406@psf.upfronthosting.co.za>
2011-03-07 13:57:52nvetoshkinlinkissue11406 messages
2011-03-07 13:57:52nvetoshkincreate