(self)
| 2296 | self.assertIs(f((1, 2, 3)), None) |
| 2297 | |
| 2298 | def test_patma_214(self): |
| 2299 | def f(): |
| 2300 | match 42: |
| 2301 | case 42: |
| 2302 | return locals() |
| 2303 | self.assertEqual(set(f()), set()) |
| 2304 | |
| 2305 | def test_patma_215(self): |
| 2306 | def f(): |
nothing calls this directly
no test coverage detected