Expose file descriptor for a file-like interface
(self)
| 513 | return lines |
| 514 | |
| 515 | def fileno(self): |
| 516 | '''Expose file descriptor for a file-like interface |
| 517 | ''' |
| 518 | return self.child_fd |
| 519 | |
| 520 | def flush(self): |
| 521 | '''This does nothing. It is here to support the interface for a |
no outgoing calls