]> granicus.if.org Git - python/commitdiff
Merged revisions 81656 via svnmerge from
authorBenjamin Peterson <benjamin@python.org>
Wed, 2 Jun 2010 18:47:26 +0000 (18:47 +0000)
committerBenjamin Peterson <benjamin@python.org>
Wed, 2 Jun 2010 18:47:26 +0000 (18:47 +0000)
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
........

Doc/library/dis.rst

index d0312de7c9c98a251621f29b71d73dc1028cb497..a73e6b37d10c34299f2bd487255d77eaa666ecdf 100644 (file)
@@ -383,13 +383,6 @@ added value or key/value pair is popped off, the container object remains on
 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.