mirror of https://github.com/python/cpython.git
Issue 10297: Add missing import in decimal example snippet.
This commit is contained in:
parent
cdc8cdd215
commit
43ef32ae36
|
@ -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')
|
||||
|
|
Loading…
Reference in New Issue