From: Ezio Melotti Date: Tue, 5 Jan 2010 08:37:27 +0000 (+0000) Subject: #7432: remove unnecessary from __future__ import division X-Git-Tag: v3.2a1~1890 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7de0a6e04cb935e1665b82804f08457c924c6a5d;p=python #7432: remove unnecessary from __future__ import division --- diff --git a/Doc/library/dis.rst b/Doc/library/dis.rst index 341beb57d8..0a3a51625b 100644 --- a/Doc/library/dis.rst +++ b/Doc/library/dis.rst @@ -219,8 +219,7 @@ result back on the stack. .. opcode:: BINARY_TRUE_DIVIDE () - Implements ``TOS = TOS1 / TOS`` when ``from __future__ import division`` is in - effect. + Implements ``TOS = TOS1 / TOS``. .. opcode:: BINARY_MODULO () @@ -290,8 +289,7 @@ the original TOS1. .. opcode:: INPLACE_TRUE_DIVIDE () - Implements in-place ``TOS = TOS1 / TOS`` when ``from __future__ import - division`` is in effect. + Implements in-place ``TOS = TOS1 / TOS``. .. opcode:: INPLACE_MODULO ()