I have the following python code:
In [1]: import decimal
In [2]: decimal.getcontext().prec = 80
In [3]: (1-decimal.Decimal('0.002'))**5
Out[3]: Decimal('0.990039920079968')
Shouldn't it match 0.99003992007996799440405766290496103465557098388671875
according to this http://www.wolframalpha.com/input/?i=SetPrecision%5B%281+-+0.002%29%5E5%2C+80%5D ?