Changeset 158

Show
Ignore:
Timestamp:
Fri Dec 2 14:29:16 2005
Author:
drew
Message:

- added AggregateFileInput? to xix.utils.io for faster iteration over multiple files
- added timetool - operations on datetime objects
- completed "most" unit testing for new functionality
- minor fix to AggregateFileInput?; after looping return last chunk, if exists

Files:

Legend:

Unmodified
Added
Removed
Modified
  • trunk/xix/utils/io.py

    r157 r158  
    29 29                 yield last + line  
    30 30                 last = ''  
      31         if last:  
      32             yield last # TODO unit test this  
    31 33  
    32 34     def __iter__(self):