(self, connection)
| 38 | """A simple SQLite REPL.""" |
| 39 | |
| 40 | def __init__(self, connection): |
| 41 | super().__init__() |
| 42 | self._con = connection |
| 43 | self._cur = connection.cursor() |
| 44 | |
| 45 | def runsource(self, source, filename="<input>", symbol="single"): |
| 46 | """Override runsource, the core of the InteractiveConsole REPL. |