Hi,
I keep getting a "runtime error (NZEC)" while using the ln function in a Decimal object.
I tried to solve "Digital Calculator", but as soon as a call Decimal.ln the program seems to crash on the grader. Locally everything runns perfect (no errors or warnings). I use Python 2.5.2.
I wrote a small test program that crashes on the grader, but not on my machine:
from decimal import *
d = Decimal("10")
d.ln()
As soon as I remove the line "d.ln()" it works fine again [just wrong answer].
Is there a way to get some more information on the NZEC error?