(self)
| 252 | self.check_long_asint(aslonglong, LLONG_MIN, LLONG_MAX) |
| 253 | |
| 254 | def test_long_aslonglongandoverflow(self): |
| 255 | # Test PyLong_AsLongLongAndOverflow() |
| 256 | aslonglongandoverflow = _testlimitedcapi.pylong_aslonglongandoverflow |
| 257 | from _testcapi import LLONG_MIN, LLONG_MAX |
| 258 | self.check_long_asintandoverflow(aslonglongandoverflow, LLONG_MIN, LLONG_MAX) |
| 259 | |
| 260 | def test_long_asunsignedlonglong(self): |
| 261 | # Test PyLong_AsUnsignedLongLong() and PyLong_FromUnsignedLongLong() |
nothing calls this directly
no test coverage detected