diff options
author | Benjamin Peterson <benjamin@python.org> | 2010-06-02 18:47:26 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2010-06-02 18:47:26 (GMT) |
commit | 5e50f8b5a19e7bad02f53e9af7e25c7e3ddeee40 (patch) | |
tree | 57970681b5de60f70ed747ac382e9289d2d022f3 /Doc/library/dis.rst | |
parent | 5050bb2e50f4035040380489c2e1d16cd59d51fa (diff) | |
download | cpython-5e50f8b5a19e7bad02f53e9af7e25c7e3ddeee40.zip cpython-5e50f8b5a19e7bad02f53e9af7e25c7e3ddeee40.tar.gz cpython-5e50f8b5a19e7bad02f53e9af7e25c7e3ddeee40.tar.bz2 |
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
........
Diffstat (limited to 'Doc/library/dis.rst')
-rw-r--r-- | Doc/library/dis.rst | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/Doc/library/dis.rst b/Doc/library/dis.rst index d0312de7..a73e6b3 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. |