(self)
| 264 | self.check_long_asint(asunsignedlonglong, 0, ULLONG_MAX, use_index=False) |
| 265 | |
| 266 | def test_long_asunsignedlonglongmask(self): |
| 267 | # Test PyLong_AsUnsignedLongLongMask() |
| 268 | asunsignedlonglongmask = _testlimitedcapi.pylong_asunsignedlonglongmask |
| 269 | from _testcapi import ULLONG_MAX |
| 270 | self.check_long_asint(asunsignedlonglongmask, 0, ULLONG_MAX, mask=True) |
| 271 | |
| 272 | def test_long_as_ssize_t(self): |
| 273 | # Test PyLong_AsSsize_t() and PyLong_FromSsize_t() |
nothing calls this directly
no test coverage detected