Class Inexact
object --+
|
exceptions.BaseException --+
|
exceptions.Exception --+
|
exceptions.StandardError --+
|
exceptions.ArithmeticError --+
|
DecimalException --+
|
Inexact
- Known Subclasses:
-
Had to round, losing information.
This occurs and signals inexact whenever the result of an operation is
not exact (that is, it needed to be rounded and any discarded digits were
non-zero), or if an overflow or underflow condition occurs. The result in
all cases is unchanged.
The inexact signal may be tested (or trapped) to determine if a given
operation (or sequence of operations) was inexact.
Inherited from DecimalException :
handle
Inherited from exceptions.ArithmeticError :
__init__ ,
__new__
Inherited from exceptions.BaseException :
__delattr__ ,
__getattribute__ ,
__getitem__ ,
__getslice__ ,
__reduce__ ,
__repr__ ,
__setattr__ ,
__setstate__ ,
__str__
Inherited from object :
__hash__ ,
__reduce_ex__
|