From: Sandro Tosi Date: Tue, 28 Feb 2012 21:28:28 +0000 (+0100) Subject: s/div/truediv/; thanks to Félix-Antoine Fortin from docs@ X-Git-Tag: v3.3.0a1~34^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=83c48822c5b99794492d7b6356b45f889bc8c9b1;p=python s/div/truediv/; thanks to Félix-Antoine Fortin from docs@ --- diff --git a/Doc/library/operator.rst b/Doc/library/operator.rst index b03d9df208..9ba7f41104 100644 --- a/Doc/library/operator.rst +++ b/Doc/library/operator.rst @@ -340,7 +340,7 @@ Python syntax and the functions in the :mod:`operator` module. +-----------------------+-------------------------+---------------------------------------+ | Containment Test | ``obj in seq`` | ``contains(seq, obj)`` | +-----------------------+-------------------------+---------------------------------------+ -| Division | ``a / b`` | ``div(a, b)`` | +| Division | ``a / b`` | ``truediv(a, b)`` | +-----------------------+-------------------------+---------------------------------------+ | Division | ``a // b`` | ``floordiv(a, b)`` | +-----------------------+-------------------------+---------------------------------------+