Changeset 6114


Ignore:
Timestamp:
Mar 10, 2016, 12:02:53 AM (8 years ago)
Author:
ldelgass
Message:

whitespace

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/1.5/lang/python/Rappture/tools.py

    r6034 r6114  
    111111       childerr   = child.stderr
    112112       childerrFd = childerr.fileno()
    113    
     113
    114114       outEOF = False
    115115       errEOF = False
    116    
     116
    117117       while True:
    118118           toCheck = []
     
    135135                   sys.stdout.write(outChunk)
    136136                   sys.stdout.flush()
    137    
     137
    138138           if childerrFd in readyRead:
    139139               errChunk = os.read(childerrFd,BUFSIZ)
     
    144144                   sys.stderr.write(errChunk)
    145145                   sys.stderr.flush()
    146    
     146
    147147           if outEOF and errEOF:
    148148               break
    149    
     149
    150150       pid,exitStatus = os.waitpid(commandPid,0)
    151151       commandPid = 0
     
    155155          except:
    156156             pass
    157    
     157
    158158       try:
    159159          signal.signal(signal.SIGINT,sig_INT_handler)
     
    165165       except:
    166166          print traceback.format_exc()
    167    
     167
    168168       if exitStatus != 0:
    169169           if   os.WIFSIGNALED(exitStatus):
Note: See TracChangeset for help on using the changeset viewer.