dircache
index
/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/dircache.py
Module Docs

Read and cache directory listings.
 
The listdir() routine returns a sorted list of the files in a directory,
using a cache to avoid reading the directory more often than necessary.
The annotate() routine appends slashes to directories.

 
Modules
       
os

 
Functions
       
annotate(head, list)
Add '/' suffixes to directories.
listdir(path)
List directory contents, using cache.
opendir = listdir(path)
List directory contents, using cache.
reset()
Reset the cache completely.

 
Data
        __all__ = ['listdir', 'opendir', 'annotate', 'reset']