snoe wrote: > Take a look at dabo, II think they're doing exactly what you're > describing. > http://blog.dabodev.com/
Dabo appear to be doing way more than what I want, with database access etc. My ideal module, when implemented, would be extremely small as far as the size of code goes. I'm using path.py as an example: http://www.jorendorff.com/articles/python/path/path.py def dirs(self, pattern=None): """ D.dirs() -> List of this directory's subdirectories. """ return [p for p in self.listdir(pattern) if p.isdir()] -- http://mail.python.org/mailman/listinfo/python-list