svn+ssh://pythondev@svn.python.org/python/trunk
........
r82415 | benjamin.peterson | 2010-07-01 10:07:15 -0500 (Thu, 01 Jul 2010) | 1 line
remove docs about delegating to special methods; it does no such thing
........
Return the floor of *x* as a float, the largest integer value less than or equal
to *x*.
- .. versionchanged:: 2.6
- Added :meth:`__floor__` delegation.
-
.. function:: fmod(x, y)
.. function:: trunc(x)
Return the :class:`Real` value *x* truncated to an :class:`Integral` (usually
- a long integer). Delegates to ``x.__trunc__()``.
+ a long integer).
.. versionadded:: 2.6