Class Subnormal
object --+
|
exceptions.BaseException --+
|
exceptions.Exception --+
|
exceptions.StandardError --+
|
exceptions.ArithmeticError --+
|
DecimalException --+
|
Subnormal
- Known Subclasses:
-
Exponent < Emin before rounding.
This occurs and signals subnormal whenever the result of a conversion
or operation is subnormal (that is, its adjusted exponent is less than
Emin, before any rounding). The result in all cases is unchanged.
The subnormal signal may be tested (or trapped) to determine if a
given or operation (or sequence of operations) yielded a subnormal
result.
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__
|