Definition at line 177 of file dbsqlite.py.
◆ __init__()
def python.dbsqlite.SQLHashItemIterator.__init__ |
( |
|
self, |
|
|
|
conn, |
|
|
|
stmt, |
|
|
|
indices |
|
) |
| |
Definition at line 178 of file dbsqlite.py.
178 def __init__(self, conn, stmt, indices):
183 self.getter = itemgetter(*indices)
◆ __iter__()
def python.dbsqlite.SQLHashItemIterator.__iter__ |
( |
|
self | ) |
|
◆ __next__()
def python.dbsqlite.SQLHashItemIterator.__next__ |
( |
|
self | ) |
|
Definition at line 193 of file dbsqlite.py.
194 o = self.getter(self.iter.__next__())
196 v = pickle.loads(o[1])
◆ next()
def python.dbsqlite.SQLHashItemIterator.next |
( |
|
self | ) |
|
Definition at line 188 of file dbsqlite.py.
189 o = self.getter(self.iter.
next())
191 v = pickle.loads(o[1])
◆ getter
python.dbsqlite.SQLHashItemIterator.getter |
◆ iter
python.dbsqlite.SQLHashItemIterator.iter |
The documentation for this class was generated from the following file: