(self, frame, with_python_scope=False)
| 490 | self.writeline('%s = missing' % ' = '.join(undefs)) |
| 491 | |
| 492 | def leave_frame(self, frame, with_python_scope=False): |
| 493 | if not with_python_scope: |
| 494 | undefs = [] |
| 495 | for target, _ in iteritems(frame.symbols.loads): |
| 496 | undefs.append(target) |
| 497 | if undefs: |
| 498 | self.writeline('%s = missing' % ' = '.join(undefs)) |
| 499 | |
| 500 | def func(self, name): |
| 501 | if self.environment.is_async: |
no test coverage detected