30 Jan
2011
30 Jan
'11
7:43 p.m.
Am 30.01.2011 17:54, schrieb Alexander Belopolsky:
On Sun, Jan 30, 2011 at 11:35 AM, Victor Stinner <victor.stinner@haypocalc.com> wrote: ..
We should find a compromise between speed (limit the number of system calls) and the usability of Python modules.
Do you have measurements that show python spending significant time on failing open calls?
No; past measurements always showed that this is insignificant, probably thanks to operating system caching the relevant directory blocks (so it doesn't really matter whether you make one or ten lookups per directory; my guess is that it matters more if you look into ten directories instead of one). Regards, Martin