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