From 27a90d989db3b6e748ccf08556464a6b830c19f0 Mon Sep 17 00:00:00 2001 From: Raymond Hettinger Date: Thu, 14 Feb 2008 11:01:10 +0000 Subject: Improve rst markup --- Doc/library/decimal.rst | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/Doc/library/decimal.rst b/Doc/library/decimal.rst index 7af200c..2f191bd 100644 --- a/Doc/library/decimal.rst +++ b/Doc/library/decimal.rst @@ -1580,17 +1580,16 @@ be followed-up with a :meth:`quantize` step. Decimal('4314.24') >>> (a * b).quantize(TWOPLACES) # Must quantize non-integer multiplication Decimal('325.62') - >>> (b / a).quantize(TWOPLACES) # And quantize divisions + >>> (b / a).quantize(TWOPLACES) # And quantize division Decimal('0.03') In developing fixed-point applications, it is convenient to define functions to handle the :meth:`quantize` step:: - def mul(x, y, fp=TWOPLACES): - return (x * y).quantize(fp) - def div(x, y, fp=TWOPLACES): - return (x / y).quantize(fp) - + >>> def mul(x, y, fp=TWOPLACES): + ... return (x * y).quantize(fp) + >>> def div(x, y, fp=TWOPLACES): + ... return (x / y).quantize(fp) >>> mul(a, b) # Automatically preserve fixed-point Decimal('325.62') >>> div(b, a) -- cgit v0.12