Interrupt running command.
( self, intr=chr( 3 ) )
| 326 | self.waiting = True |
| 327 | |
| 328 | def sendInt( self, intr=chr( 3 ) ): |
| 329 | "Interrupt running command." |
| 330 | debug( 'sendInt: writing chr(%d)\n' % ord( intr ) ) |
| 331 | self.write( intr ) |
| 332 | |
| 333 | def monitor( self, timeoutms=None, findPid=True ): |
| 334 | """Monitor and return the output of a command. |
no test coverage detected