summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2010-06-02 18:10:09 (GMT)
committerBenjamin Peterson <benjamin@python.org>2010-06-02 18:10:09 (GMT)
commit775ae4a6f04e17ae361199eef101fe658b4a5e75 (patch)
tree7d9df6c24d6a04f54664e4ae970d49d60ca8473b
parent4b87620d5dde50949ef820ed241d9883ac9f96de (diff)
downloadcpython-775ae4a6f04e17ae361199eef101fe658b4a5e75.zip
cpython-775ae4a6f04e17ae361199eef101fe658b4a5e75.tar.gz
cpython-775ae4a6f04e17ae361199eef101fe658b4a5e75.tar.bz2
remove description of LOAD_LOCALS #8874
-rw-r--r--Doc/library/dis.rst7
1 files changed, 0 insertions, 7 deletions
diff --git a/Doc/library/dis.rst b/Doc/library/dis.rst
index 0a3a516..b62a673 100644
--- a/Doc/library/dis.rst
+++ b/Doc/library/dis.rst
@@ -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.