(self)
| 152 | self.check_tuple_from_pair(from_pair) |
| 153 | |
| 154 | def test_tuple_from_pair_steal(self): |
| 155 | # Test _PyTuple_FromPairSteal() |
| 156 | from_pair = _testinternalcapi.tuple_from_pair_steal |
| 157 | self.check_tuple_from_pair(from_pair) |
| 158 | |
| 159 | def test_tuple_size(self): |
| 160 | # Test PyTuple_Size() |
nothing calls this directly
no test coverage detected