Message303672
The aim here is to capture the original Decimal value where possible, including the exponent information. (Unlike floats, trailing zeros in a `Decimal` instance are significant.)
>>> from decimal import Decimal
>>> Decimal('+0.0000000000000000000e+19')
Decimal('0')
>>> Decimal('+0.0000000000000000000e+00')
Decimal('0E-19') |
|
| Date |
User |
Action |
Args |
| 2017-10-04 06:23:48 | mark.dickinson | set | recipients:
+ mark.dickinson, rhettinger, facundobatista, skrah, Aaron.Meurer |
| 2017-10-04 06:23:48 | mark.dickinson | set | messageid: <1507098228.05.0.213398074469.issue31684@psf.upfronthosting.co.za> |
| 2017-10-04 06:23:48 | mark.dickinson | link | issue31684 messages |
| 2017-10-04 06:23:47 | mark.dickinson | create | |
|