( self, string )
| 129 | sys.stderr = stderr |
| 130 | |
| 131 | def write( self, string ): |
| 132 | |
| 133 | if self.__newline: |
| 134 | self.__stdout.write( ' %04X ' % self.__id ) |
| 135 | self.__stdout.write( string ) |
| 136 | self.__newline = string.endswith( '\n' ) |
| 137 | |
| 138 | |
| 139 | def spawn( generator, port, debug ): |
no test coverage detected