[Python-checkins] r77314 - python/branches/py3k/Doc/library/dis.rst

ezio.melotti python-checkins at python.org
Tue Jan 5 09:37:27 CET 2010


Author: ezio.melotti
Date: Tue Jan  5 09:37:27 2010
New Revision: 77314

Log:
#7432: remove unnecessary from __future__ import division

Modified:
   python/branches/py3k/Doc/library/dis.rst

Modified: python/branches/py3k/Doc/library/dis.rst
==============================================================================
--- python/branches/py3k/Doc/library/dis.rst	(original)
+++ python/branches/py3k/Doc/library/dis.rst	Tue Jan  5 09:37:27 2010
@@ -219,8 +219,7 @@
 
 .. 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 @@
 
 .. 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 ()


More information about the Python-checkins mailing list