Kaydet (Commit) 7de0a6e0 authored tarafından Ezio Melotti's avatar Ezio Melotti

#7432: remove unnecessary from __future__ import division

üst b6938331
......@@ -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 ()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment