Returns the current code block as string (without prompts)
(self)
| 1360 | self.cursor_offset = len(self.current_line) |
| 1361 | |
| 1362 | def get_current_block(self): |
| 1363 | """ |
| 1364 | Returns the current code block as string (without prompts) |
| 1365 | """ |
| 1366 | return "\n".join(self.buffer + [self.current_line]) |
| 1367 | |
| 1368 | def send_to_stdouterr(self, output): |
| 1369 | """Send unicode strings or FmtStr to Repl stdout or stderr |
no outgoing calls
no test coverage detected