(self, s)
| 241 | return cls() |
| 242 | |
| 243 | def _stdin_writeln(self, s): |
| 244 | if self.latex is None: |
| 245 | self._setup_latex_process() |
| 246 | self.latex.stdin.write(s) |
| 247 | self.latex.stdin.write("\n") |
| 248 | self.latex.stdin.flush() |
| 249 | |
| 250 | def _expect(self, s): |
| 251 | s = list(s) |
no test coverage detected