(self)
| 258 | self.check_long_asintandoverflow(aslonglongandoverflow, LLONG_MIN, LLONG_MAX) |
| 259 | |
| 260 | def test_long_asunsignedlonglong(self): |
| 261 | # Test PyLong_AsUnsignedLongLong() and PyLong_FromUnsignedLongLong() |
| 262 | asunsignedlonglong = _testlimitedcapi.pylong_asunsignedlonglong |
| 263 | from _testcapi import ULLONG_MAX |
| 264 | self.check_long_asint(asunsignedlonglong, 0, ULLONG_MAX, use_index=False) |
| 265 | |
| 266 | def test_long_asunsignedlonglongmask(self): |
| 267 | # Test PyLong_AsUnsignedLongLongMask() |
nothing calls this directly
no test coverage detected