diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2010-01-05 08:37:27 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2010-01-05 08:37:27 (GMT) |
commit | 7de0a6e04cb935e1665b82804f08457c924c6a5d (patch) | |
tree | adeda41861d70e66641c988ad9d659b699fab904 /Doc | |
parent | b693833154a4d0975af189aabece45776e058aff (diff) | |
download | cpython-7de0a6e04cb935e1665b82804f08457c924c6a5d.zip cpython-7de0a6e04cb935e1665b82804f08457c924c6a5d.tar.gz cpython-7de0a6e04cb935e1665b82804f08457c924c6a5d.tar.bz2 |
#7432: remove unnecessary from __future__ import division
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/dis.rst | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/Doc/library/dis.rst b/Doc/library/dis.rst index 341beb5..0a3a516 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 () |