Definition at line 179 of file dbsqlite.py.
◆ __init__()
def python.dbsqlite.SQLHashItemIterator.__init__ |
( |
|
self, |
|
|
|
conn, |
|
|
|
stmt, |
|
|
|
indices |
|
) |
| |
Definition at line 180 of file dbsqlite.py.
180 def __init__(self, conn, stmt, indices):
185 self.getter = itemgetter(*indices)
◆ __iter__()
def python.dbsqlite.SQLHashItemIterator.__iter__ |
( |
|
self | ) |
|
◆ __next__()
def python.dbsqlite.SQLHashItemIterator.__next__ |
( |
|
self | ) |
|
Definition at line 195 of file dbsqlite.py.
196 o = self.getter(self.iter.__next__())
198 v = pickle.loads(o[1])
◆ next()
def python.dbsqlite.SQLHashItemIterator.next |
( |
|
self | ) |
|
Definition at line 190 of file dbsqlite.py.
191 o = self.getter(self.iter.
next())
193 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: