]> granicus.if.org Git - python/commitdiff
#7432: remove unnecessary from __future__ import division
authorEzio Melotti <ezio.melotti@gmail.com>
Tue, 5 Jan 2010 08:37:27 +0000 (08:37 +0000)
committerEzio Melotti <ezio.melotti@gmail.com>
Tue, 5 Jan 2010 08:37:27 +0000 (08:37 +0000)
Doc/library/dis.rst

index 341beb57d801e11f83dd2b751f98c6cce10fceed..0a3a51625b74ee1429a8801b9f76b435a61af5f2 100644 (file)
@@ -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 ()