]> granicus.if.org Git - python/commitdiff
Merged revisions 73642 via svnmerge from
authorMark Dickinson <dickinsm@gmail.com>
Sun, 28 Jun 2009 21:25:41 +0000 (21:25 +0000)
committerMark Dickinson <dickinsm@gmail.com>
Sun, 28 Jun 2009 21:25:41 +0000 (21:25 +0000)
svn+ssh://pythondev@www.python.org/python/branches/py3k

........
  r73642 | mark.dickinson | 2009-06-28 22:24:42 +0100 (Sun, 28 Jun 2009) | 1 line

  Fix incorrect quote type on Decimal examples
........

Doc/tutorial/stdlib2.rst

index d17b03121632e061fa4d6c2552ca5127b6230635..938430f391f21d0007de6ef215fb1f1dcc3e2b77 100644 (file)
@@ -373,7 +373,7 @@ Exact representation enables the :class:`Decimal` class to perform modulo
 calculations and equality tests that are unsuitable for binary floating point::
 
    >>> Decimal('1.00') % Decimal('.10')
-   Decimal("0.00")
+   Decimal('0.00')
    >>> 1.00 % 0.10
    0.09999999999999995
 
@@ -386,6 +386,6 @@ The :mod:`decimal` module provides arithmetic with as much precision as needed::
 
    >>> getcontext().prec = 36
    >>> Decimal(1) / Decimal(7)
-   Decimal("0.142857142857142857142857142857142857")
+   Decimal('0.142857142857142857142857142857142857')