(self)
| 2303 | self.assertEqual(set(f()), set()) |
| 2304 | |
| 2305 | def test_patma_215(self): |
| 2306 | def f(): |
| 2307 | match 1: |
| 2308 | case 1 | 2 | 3: |
| 2309 | return locals() |
| 2310 | self.assertEqual(set(f()), set()) |
| 2311 | |
| 2312 | def test_patma_216(self): |
| 2313 | def f(): |
nothing calls this directly
no test coverage detected