commit | c921dacf7842a3a89395c68affa25793ee45d3f3 | [log] [tgz] |
---|---|---|
author | Raymond Hettinger <python@rcn.com> | Sat Jan 03 07:50:46 2009 +0000 |
committer | Raymond Hettinger <python@rcn.com> | Sat Jan 03 07:50:46 2009 +0000 |
tree | 55f128bfcbac30c9d14004c7c0dab4872e803511 | |
parent | b3833ddecd2217e904c90a72f82a13ace3a348c8 [diff] |
Lost one line on a decimal recipe.
diff --git a/Doc/library/decimal.rst b/Doc/library/decimal.rst index c90e9b9..e14c4d1 100644 --- a/Doc/library/decimal.rst +++ b/Doc/library/decimal.rst
@@ -1884,6 +1884,7 @@ ctx = Context(prec=60) result = ctx.divide(numerator, denominator) while ctx.flags[Inexact]: + ctx.flags[Inexact] = False ctx.prec *= 2 result = ctx.divide(numerator, denominator) return result