]> granicus.if.org Git - python/commitdiff
Merged revisions 86286 via svnmerge from
authorMark Dickinson <dickinsm@gmail.com>
Sun, 7 Nov 2010 11:26:24 +0000 (11:26 +0000)
committerMark Dickinson <dickinsm@gmail.com>
Sun, 7 Nov 2010 11:26:24 +0000 (11:26 +0000)
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r86286 | mark.dickinson | 2010-11-07 11:24:44 +0000 (Sun, 07 Nov 2010) | 1 line

  Issue 10297: Add missing import in decimal example snippet.
........

Doc/library/decimal.rst

index 5667bd2a674b5eefcc6db9144d5f6eaf54161dac..758dcce9e3b231fe89e2fd0b33b456f56e47f2a5 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')