Python 2.3 (when we eventually get Chimera using it) has one feature that I think people are going yo want to use: Universal newlines - files opened for reading with the special mode "U" (instead of "r") translate all three commonly found line ending conventions (\n, \r, \r\n) into Python's standard \n convention. Contributed by Jack Jansen. --Eric