home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / pypil112.zip / PIL-1.1.2.zip / Lib / site-packages / PIL / ImageSequence.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2001-12-25  |  1KB  |  27 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.2)
  3.  
  4.  
  5. class Iterator:
  6.     '''Sequence iterator (use with the for-statement)'''
  7.     
  8.     def __init__(self, im):
  9.         if not hasattr(im, 'seek'):
  10.             raise AttributeError, 'im must have seek method'
  11.         
  12.         self.im = im
  13.  
  14.     
  15.     def __getitem__(self, ix):
  16.         
  17.         try:
  18.             if ix:
  19.                 self.im.seek(ix)
  20.             
  21.             return self.im
  22.         except EOFError:
  23.             raise IndexError
  24.  
  25.  
  26.  
  27.