(self)
| 3166 | NS(w='3', y='1', z='2')) |
| 3167 | |
| 3168 | def test_single_parent_mutex(self): |
| 3169 | self._test_mutex_ab(self.ab_mutex_parent.parse_args) |
| 3170 | parser = ErrorRaisingArgumentParser(parents=[self.ab_mutex_parent]) |
| 3171 | self._test_mutex_ab(parser.parse_args) |
| 3172 | |
| 3173 | def test_single_grandparent_mutex(self): |
| 3174 | parents = [self.ab_mutex_parent] |
nothing calls this directly
no test coverage detected