(self)
| 893 | test_inner() |
| 894 | |
| 895 | def test_return(self): |
| 896 | # 'return' [testlist_star_expr] |
| 897 | def g1(): return |
| 898 | def g2(): return 1 |
| 899 | def g3(): |
| 900 | z = [2, 3] |
| 901 | return 1, *z |
| 902 | |
| 903 | g1() |
| 904 | x = g2() |
| 905 | y = g3() |
| 906 | self.assertEqual(y, (1, 2, 3), "unparenthesized star expr return") |
| 907 | check_syntax_error(self, "class foo:return 1") |
| 908 | |
| 909 | def test_break_in_finally(self): |
| 910 | count = 0 |
nothing calls this directly
no test coverage detected