Home | History | Annotate | Download | only in test

Lines Matching refs:PyLong_BASE

1066         PyLong_BASE = 2**sys.int_info.bits_per_digit
1067 check(int(PyLong_BASE), vsize('') + 2*self.longdigit)
1068 check(int(PyLong_BASE**2-1), vsize('') + 2*self.longdigit)
1069 check(int(PyLong_BASE**2), vsize('') + 3*self.longdigit)