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

Method __iter__

Lib/dbm/sqlite3.py:107–113  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

105 raise KeyError(key)
106
107 def __iter__(self):
108 try:
109 with self._execute(ITER_KEYS) as cu:
110 for row in cu:
111 yield row[0]
112 except sqlite3.Error as exc:
113 raise error(str(exc))
114
115 def close(self):
116 if self._cx:

Callers

nothing calls this directly

Calls 3

_executeMethod · 0.95
strFunction · 0.85
errorClass · 0.70

Tested by

no test coverage detected