(self, bus, stdin='/dev/null', stdout='/dev/null',
stderr='/dev/null')
| 352 | """ |
| 353 | |
| 354 | def __init__(self, bus, stdin='/dev/null', stdout='/dev/null', |
| 355 | stderr='/dev/null'): |
| 356 | SimplePlugin.__init__(self, bus) |
| 357 | self.stdin = stdin |
| 358 | self.stdout = stdout |
| 359 | self.stderr = stderr |
| 360 | self.finalized = False |
| 361 | |
| 362 | def start(self): |
| 363 | if self.finalized: |