(fn, i, rawdata, report=1)
| 14 | # of like a more optimized Python 2.6, with reduced extraneous jumps, |
| 15 | # but still 2.6-ish and not 2.7- or 3.1-ish. |
| 16 | def parse_marked_section(fn, i, rawdata, report=1): |
| 17 | if report: |
| 18 | j = 1 |
| 19 | fn(rawdata[i: j]) |
| 20 | return 10 |
| 21 | |
| 22 | # From 3.0.1 _abcoll.py |
| 23 | # Bug was in genexpr_func which doesn't have a JUMP_BACK but |