[Python-checkins] r82415 - python/trunk/Doc/library/math.rst
benjamin.peterson
python-checkins at python.org
Thu Jul 1 17:07:15 CEST 2010
Author: benjamin.peterson
Date: Thu Jul 1 17:07:15 2010
New Revision: 82415
Log:
remove docs about delegating to special methods; it does no such thing
Modified:
python/trunk/Doc/library/math.rst
Modified: python/trunk/Doc/library/math.rst
==============================================================================
--- python/trunk/Doc/library/math.rst (original)
+++ python/trunk/Doc/library/math.rst Thu Jul 1 17:07:15 2010
@@ -57,9 +57,6 @@
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)
@@ -137,7 +134,7 @@
.. 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
More information about the Python-checkins
mailing list