(self)
| 240 | use_index=False) |
| 241 | |
| 242 | def test_long_asunsignedlongmask(self): |
| 243 | # Test PyLong_AsUnsignedLongMask() |
| 244 | asunsignedlongmask = _testlimitedcapi.pylong_asunsignedlongmask |
| 245 | from _testcapi import ULONG_MAX |
| 246 | self.check_long_asint(asunsignedlongmask, 0, ULONG_MAX, mask=True) |
| 247 | |
| 248 | def test_long_aslonglong(self): |
| 249 | # Test PyLong_AsLongLong() and PyLong_FromLongLong() |
nothing calls this directly
no test coverage detected