[Python-checkins] r81657 - in python/branches/release31-maint: Doc/library/dis.rst

benjamin.peterson python-checkins at python.org
Wed Jun 2 20:47:26 CEST 2010


Author: benjamin.peterson
Date: Wed Jun  2 20:47:26 2010
New Revision: 81657

Log:
Merged revisions 81656 via svnmerge from 
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r81656 | benjamin.peterson | 2010-06-02 13:10:09 -0500 (Wed, 02 Jun 2010) | 1 line
  
  remove description of LOAD_LOCALS #8874
........


Modified:
   python/branches/release31-maint/   (props changed)
   python/branches/release31-maint/Doc/library/dis.rst

Modified: python/branches/release31-maint/Doc/library/dis.rst
==============================================================================
--- python/branches/release31-maint/Doc/library/dis.rst	(original)
+++ python/branches/release31-maint/Doc/library/dis.rst	Wed Jun  2 20:47:26 2010
@@ -383,13 +383,6 @@
 the stack so that it is available for further iterations of the loop.
 
 
-.. opcode:: LOAD_LOCALS ()
-
-   Pushes a reference to the locals of the current scope on the stack. This is used
-   in the code for a class definition: After the class body is evaluated, the
-   locals are passed to the class definition.
-
-
 .. opcode:: RETURN_VALUE ()
 
    Returns with TOS to the caller of the function.


More information about the Python-checkins mailing list