Write data to node. data: string
( self, data )
| 268 | return line |
| 269 | |
| 270 | def write( self, data ): |
| 271 | """Write data to node. |
| 272 | data: string""" |
| 273 | os.write( self.stdin.fileno(), encode( data ) ) |
| 274 | |
| 275 | def terminate( self ): |
| 276 | "Send kill signal to Node and clean up after it." |
no test coverage detected