| 94 | class ChildPost(Parent): |
| 95 | pass |
| 96 | class GrandchildPost(ChildPost): |
| 97 | pass |
| 98 | self.assertEqual(self.check_sequence_then_mapping(Parent()), "map") |
| 99 | self.assertEqual(self.check_sequence_then_mapping(ChildPre()), "map") |
| 100 | self.assertEqual(self.check_sequence_then_mapping(GrandchildPre()), "map") |
no outgoing calls
searching dependent graphs…