summaryrefslogtreecommitdiffstats
path: root/Doc/library/math.rst
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2010-07-01 15:07:15 (GMT)
committerBenjamin Peterson <benjamin@python.org>2010-07-01 15:07:15 (GMT)
commit7b670624ac5412b81353c168295de33250935d77 (patch)
treecc2f06c6c028f41d03dc59f7c7140aba2b8124c6 /Doc/library/math.rst
parentc262a69f545b0a7048bb45a2ede7065fd9826ab8 (diff)
downloadcpython-7b670624ac5412b81353c168295de33250935d77.zip
cpython-7b670624ac5412b81353c168295de33250935d77.tar.gz
cpython-7b670624ac5412b81353c168295de33250935d77.tar.bz2
remove docs about delegating to special methods; it does no such thing
Diffstat (limited to 'Doc/library/math.rst')
-rw-r--r--Doc/library/math.rst5
1 files changed, 1 insertions, 4 deletions
diff --git a/Doc/library/math.rst b/Doc/library/math.rst
index 4b3d6d9..31e64a2 100644
--- a/Doc/library/math.rst
+++ b/Doc/library/math.rst
@@ -57,9 +57,6 @@ Number-theoretic and representation functions
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 @@ Number-theoretic and representation functions
.. 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