MCPcopy Index your code
hub / github.com/python/cpython / test_long_asunsignedlonglong

Method test_long_asunsignedlonglong

Lib/test/test_capi/test_long.py:260–264  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

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()

Callers

nothing calls this directly

Calls 1

check_long_asintMethod · 0.95

Tested by

no test coverage detected