diff --git a/Doc/library/decimal.rst b/Doc/library/decimal.rst index bf153ba30f5..9d5b32ffacb 100644 --- a/Doc/library/decimal.rst +++ b/Doc/library/decimal.rst @@ -144,7 +144,7 @@ value of that integer or float. Decimal numbers include special values such as >>> Decimal((0, (3, 1, 4), -2)) Decimal('3.14') >>> Decimal(str(2.0 ** 0.5)) - Decimal('1.41421356237') + Decimal('1.4142135623730951') >>> Decimal(2) ** Decimal('0.5') Decimal('1.414213562373095048801688724') >>> Decimal('NaN') diff --git a/Doc/library/operator.rst b/Doc/library/operator.rst index 3c36f2bca95..1dc0e144d28 100644 --- a/Doc/library/operator.rst +++ b/Doc/library/operator.rst @@ -9,7 +9,7 @@ .. testsetup:: import operator - from operator import itemgetter + from operator import itemgetter, iadd The :mod:`operator` module exports a set of functions implemented in C diff --git a/Doc/library/turtle.rst b/Doc/library/turtle.rst index 4f2fbcc942d..692746fad1d 100644 --- a/Doc/library/turtle.rst +++ b/Doc/library/turtle.rst @@ -1878,7 +1878,7 @@ Settings and special methods >>> cv = screen.getcanvas() >>> cv - + .. function:: getshapes()