]> granicus.if.org Git - python/commitdiff
Issue 10297: Add missing import in decimal example snippet.
authorMark Dickinson <dickinsm@gmail.com>
Sun, 7 Nov 2010 11:24:44 +0000 (11:24 +0000)
committerMark Dickinson <dickinsm@gmail.com>
Sun, 7 Nov 2010 11:24:44 +0000 (11:24 +0000)
Doc/library/decimal.rst

index e82929cd6cbc148d206d92bbb6bce7c021d2ac75..d0dedda40e562d6683caa2a19a1a39df32e5bd81 100644 (file)
@@ -51,6 +51,7 @@ arithmetic.  It offers several advantages over the :class:`float` datatype:
   alterable precision (defaulting to 28 places) which can be as large as needed for
   a given problem:
 
+     >>> from decimal import *
      >>> getcontext().prec = 6
      >>> Decimal(1) / Decimal(7)
      Decimal('0.142857')