()
| 925 | self.check_stack_names(sys._getframe(), ['f', 'g']) |
| 926 | |
| 927 | def g(): |
| 928 | self.check_stack_names(sys._getframe(), ['g']) |
| 929 | yield from f() |
| 930 | self.check_stack_names(sys._getframe(), ['g']) |
| 931 | |
| 932 | gen = g() |
| 933 | gen.send(None) |
nothing calls this directly
no test coverage detected