0
0
mirror of https://github.com/python/cpython.git synced 2024-12-01 11:15:56 +01:00

#7432: remove unnecessary from __future__ import division

This commit is contained in:
Ezio Melotti 2010-01-05 08:37:27 +00:00
parent b693833154
commit 7de0a6e04c

View 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 ()