Show
Ignore:
Timestamp:
10/18/06 08:28:21 (18 years ago)
Author:
jerome
Message:

Ensure no data remains in the pipe.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • pkpgcounter/trunk/pkpgpdls/pdlparser.py

    r428 r429  
    101101                        while data : 
    102102                            child.tochild.write(data) 
     103                            child.tochild.flush() 
    103104                            data = self.infile.read(MEGABYTE) 
    104105                    except (IOError, OSError) :     
     
    106107                finally :     
    107108                    child.tochild.close()     
     109                    dummy = child.fromchild.read() 
    108110                    child.fromchild.close() 
    109111