(self)
| 2302 | return id |
| 2303 | |
| 2304 | def test_conversion_int(self): |
| 2305 | convert = _testinternalcapi.normalize_interp_id |
| 2306 | interpid = convert(10) |
| 2307 | self.assertEqual(interpid, 10) |
| 2308 | |
| 2309 | def test_conversion_coerced(self): |
| 2310 | convert = _testinternalcapi.normalize_interp_id |
nothing calls this directly
no test coverage detected