MCPcopy Index your code
hub / github.com/RustPython/RustPython / __init__

Method __init__

Lib/sqlite3/__main__.py:40–43  ·  view source on GitHub ↗
(self, connection)

Source from the content-addressed store, hash-verified

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.

Callers

nothing calls this directly

Calls 2

superClass · 0.85
cursorMethod · 0.80

Tested by

no test coverage detected