()
| 917 | |
| 918 | def check_yield_from_example(self, call_method): |
| 919 | def f(): |
| 920 | self.check_stack_names(sys._getframe(), ['f', 'g']) |
| 921 | try: |
| 922 | yield |
| 923 | except Exception: |
| 924 | pass |
| 925 | self.check_stack_names(sys._getframe(), ['f', 'g']) |
| 926 | |
| 927 | def g(): |
| 928 | self.check_stack_names(sys._getframe(), ['g']) |
nothing calls this directly
no test coverage detected