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

Method test_long_asunsignedlonglongmask

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

Source from the content-addressed store, hash-verified

264 self.check_long_asint(asunsignedlonglong, 0, ULLONG_MAX, use_index=False)
265
266 def test_long_asunsignedlonglongmask(self):
267 # Test PyLong_AsUnsignedLongLongMask()
268 asunsignedlonglongmask = _testlimitedcapi.pylong_asunsignedlonglongmask
269 from _testcapi import ULLONG_MAX
270 self.check_long_asint(asunsignedlonglongmask, 0, ULLONG_MAX, mask=True)
271
272 def test_long_as_ssize_t(self):
273 # Test PyLong_AsSsize_t() and PyLong_FromSsize_t()

Callers

nothing calls this directly

Calls 1

check_long_asintMethod · 0.95

Tested by

no test coverage detected