(self)
| 147 | self.assertRaises(TypeError, from_pair) |
| 148 | |
| 149 | def test_tuple_from_pair(self): |
| 150 | # Test _PyTuple_FromPair() |
| 151 | from_pair = _testinternalcapi.tuple_from_pair |
| 152 | self.check_tuple_from_pair(from_pair) |
| 153 | |
| 154 | def test_tuple_from_pair_steal(self): |
| 155 | # Test _PyTuple_FromPairSteal() |
nothing calls this directly
no test coverage detected