| 325 | sess = fixture_session() |
| 326 | |
| 327 | class MyBundle(Bundle): |
| 328 | def create_row_processor(self, query, procs, labels): |
| 329 | def proc(row): |
| 330 | return list(zip(labels, (proc(row) for proc in procs))) |
| 331 | |
| 332 | return proc |
| 333 | |
| 334 | b1 = MyBundle("b1", Data.d1, Data.d2) |
| 335 |