La excelente biblioteca pure-python, Mpmath, sin duda servirá.
El único foco de esta biblioteca es aritmética de coma flotante de precisión múltiple.
por ejemplo, mpath puede evaluar e a la precisión arbitraria:
In [2]: from mpmath import *
# set the desired precision on the fly
In [3]: mp.dps=20; mp.pretty=True
In [4]: +e
Out[4]: 2.7182818284590452354
# re-set the precision (50 digits)
In [5]: mp.dps=50; mp.pretty=True
In [6]: +e
Out[6]: 2.7182818284590452353602874713526624977572470937
Como acotación al margen, Mpmath está también estrechamente integrado con Matplotlib.
Nota: http://mathworld.wolfram.com/e.html y en las aproximaciones de 'e' http://mathworld.wolfram.com/eApproximations.html – mctylr