()
| 1067 | if t.finally_body: |
| 1068 | |
| 1069 | def transform_try_body() -> None: |
| 1070 | if t.handlers: |
| 1071 | transform_try_except_stmt(builder, t) |
| 1072 | else: |
| 1073 | builder.accept(t.body) |
| 1074 | |
| 1075 | body = t.finally_body |
| 1076 |
nothing calls this directly
no test coverage detected
searching dependent graphs…