diff options
author | Raymond Hettinger <python@rcn.com> | 2004-07-05 18:56:03 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2004-07-05 18:56:03 (GMT) |
commit | 9c719bafbffff4d0693fe0662f440f65a43ad71f (patch) | |
tree | 2552a520a52102ca11e5aec4596996535cf96bad | |
parent | 5548be2653755e4c8a29845a032a036fafc2e44b (diff) | |
download | cpython-9c719bafbffff4d0693fe0662f440f65a43ad71f.zip cpython-9c719bafbffff4d0693fe0662f440f65a43ad71f.tar.gz cpython-9c719bafbffff4d0693fe0662f440f65a43ad71f.tar.bz2 |
Fix typo
-rw-r--r-- | Doc/lib/libdecimal.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/lib/libdecimal.tex b/Doc/lib/libdecimal.tex index c4095c9..c0a2cc7 100644 --- a/Doc/lib/libdecimal.tex +++ b/Doc/lib/libdecimal.tex @@ -938,7 +938,7 @@ def pi(): d, da = d+da, da+32 t = (t * n) / d c += t - getcontext().prec -= 10 + getcontext().prec -= 9 return c def exp(x): |