Does anyone know of a faster decimal implementation in python?
As the example below demonstrates, the standard library\'s decimal module is ~100 times slower than
python Decimal is very slow, one can use float or a faster implementation of Decimal cDecimal.