]> granicus.if.org Git - python/commitdiff
remove description of LOAD_LOCALS #8874
authorBenjamin Peterson <benjamin@python.org>
Wed, 2 Jun 2010 18:10:09 +0000 (18:10 +0000)
committerBenjamin Peterson <benjamin@python.org>
Wed, 2 Jun 2010 18:10:09 +0000 (18:10 +0000)
Doc/library/dis.rst

index 0a3a51625b74ee1429a8801b9f76b435a61af5f2..b62a6731ace0dd13c196f3857661b8c7fbefb1c8 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.