(self)
| 221 | self.check_long_asint(PyLong_AsInt, INT_MIN, INT_MAX) |
| 222 | |
| 223 | def test_long_aslong(self): |
| 224 | # Test PyLong_AsLong() and PyLong_FromLong() |
| 225 | aslong = _testlimitedcapi.pylong_aslong |
| 226 | from _testcapi import LONG_MIN, LONG_MAX |
| 227 | self.check_long_asint(aslong, LONG_MIN, LONG_MAX) |
| 228 | |
| 229 | def test_long_aslongandoverflow(self): |
| 230 | # Test PyLong_AsLongAndOverflow() |
nothing calls this directly
no test coverage detected