Lines Matching refs:Integral
10 __all__ = ["Number", "Complex", "Real", "Rational", "Integral"]
167 """trunc(self): Truncates self to an Integral.
169 Returns an Integral i such that:
172 * for any Integral j satisfying the first two conditions,
180 """Finds the greatest Integral <= self."""
185 """Finds the least Integral >= self."""
192 If ndigits is omitted or None, returns an Integral, otherwise
294 class Integral(Rational):
295 """Integral adds methods that work on integral numbers.
318 or any argument isn't Integral. Otherwise, just implement the
393 Integral.register(int)