Do we use a goto for error handling (instead of straight return)?
(self)
| 877 | ) |
| 878 | |
| 879 | def use_goto(self) -> bool: |
| 880 | """Do we use a goto for error handling (instead of straight return)?""" |
| 881 | return bool(self.cleanups or self.traceback_code) |
| 882 | |
| 883 | def emit_header(self) -> None: |
| 884 | """Emit the function header of the wrapper implementation.""" |
no test coverage detected