From 83c48822c5b99794492d7b6356b45f889bc8c9b1 Mon Sep 17 00:00:00 2001 From: Sandro Tosi Date: Tue, 28 Feb 2012 22:28:28 +0100 Subject: [PATCH] =?utf8?q?s/div/truediv/;=20thanks=20to=20F=C3=A9lix-Antoi?= =?utf8?q?ne=20Fortin=20from=20docs@?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- Doc/library/operator.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)`` | +-----------------------+-------------------------+---------------------------------------+ -- 2.40.0