(self)
| 606 | self.assertIs(y, None) |
| 607 | |
| 608 | def test_patma_054(self): |
| 609 | x = set() |
| 610 | y = None |
| 611 | match x: |
| 612 | case []: |
| 613 | y = 0 |
| 614 | self.assertEqual(x, set()) |
| 615 | self.assertIs(y, None) |
| 616 | |
| 617 | def test_patma_055(self): |
| 618 | x = iter([1, 2, 3]) |
nothing calls this directly
no test coverage detected