]> granicus.if.org Git - python/commitdiff
Remove references to Py3k in __floor__, __ceil__ and __round__ documentation.
authorMark Dickinson <dickinsm@gmail.com>
Tue, 24 Jun 2008 15:35:14 +0000 (15:35 +0000)
committerMark Dickinson <dickinsm@gmail.com>
Tue, 24 Jun 2008 15:35:14 +0000 (15:35 +0000)
Doc/library/fractions.rst

index e7bd9c5d8e380f6a91792198191f25b6976887fb..ceca9f5542f16ee349ad9dd05736d8d033e2fbea 100644 (file)
@@ -65,14 +65,12 @@ Fraction number class.
 
    .. method:: __floor__()
 
-      Returns the greatest :class:`int` ``<= self``. Will be accessible through
-      :func:`math.floor` in Py3k.
+      Returns the greatest :class:`int` ``<= self``.
 
 
    .. method:: __ceil__()
 
-      Returns the least :class:`int` ``>= self``. Will be accessible through
-      :func:`math.ceil` in Py3k.
+      Returns the least :class:`int` ``>= self``.
 
 
    .. method:: __round__()
@@ -81,8 +79,7 @@ Fraction number class.
       The first version returns the nearest :class:`int` to ``self``, rounding
       half to even. The second version rounds ``self`` to the nearest multiple
       of ``Fraction(1, 10**ndigits)`` (logically, if ``ndigits`` is negative),
-      again rounding half toward even. Will be accessible through :func:`round`
-      in Py3k.
+      again rounding half toward even.
 
 
 .. seealso::