(leaf, eg)
| 713 | getattr(part, '__notes__', None)) |
| 714 | |
| 715 | def tbs_for_leaf(leaf, eg): |
| 716 | for e, tbs in leaf_generator(eg): |
| 717 | if e is leaf: |
| 718 | return tbs |
| 719 | |
| 720 | def tb_linenos(tbs): |
| 721 | return [tb.tb_lineno for tb in tbs if tb] |
nothing calls this directly
no test coverage detected