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
The GMP library is one of the best arbitrary precision math libraries around, and there is a Python binding available at GMPY. I would try that method.