(self)
| 2043 | self.current_line = "" |
| 2044 | |
| 2045 | def initialize_interp(self) -> None: |
| 2046 | self.coderunner.interp.locals["_repl"] = self |
| 2047 | self.coderunner.interp.runsource( |
| 2048 | "from bpython.curtsiesfrontend._internal import _Helper\n" |
| 2049 | ) |
| 2050 | self.coderunner.interp.runsource("help = _Helper(_repl)\n") |
| 2051 | self.coderunner.interp.runsource("del _Helper\n") |
| 2052 | |
| 2053 | del self.coderunner.interp.locals["_repl"] |
| 2054 | |
| 2055 | def getstdout(self) -> str: |
| 2056 | """ |
no test coverage detected