diff options
author | Benjamin Peterson <benjamin@python.org> | 2011-07-18 03:49:50 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2011-07-18 03:49:50 (GMT) |
commit | 76f7f4d979fcec9cff5175044f1c05123f0d7def (patch) | |
tree | e10ea5e2900a83baa68af193f1df7c86b25cde72 /Doc/library/dis.rst | |
parent | 42d1320c06eec275de5a080a5285f9cd7c08d15d (diff) | |
download | cpython-76f7f4d979fcec9cff5175044f1c05123f0d7def.zip cpython-76f7f4d979fcec9cff5175044f1c05123f0d7def.tar.gz cpython-76f7f4d979fcec9cff5175044f1c05123f0d7def.tar.bz2 |
excise the remains of STOP_CODE, which hasn't done anything useful for years
Diffstat (limited to 'Doc/library/dis.rst')
-rw-r--r-- | Doc/library/dis.rst | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/Doc/library/dis.rst b/Doc/library/dis.rst index 79cc583..cb429c8 100644 --- a/Doc/library/dis.rst +++ b/Doc/library/dis.rst @@ -171,11 +171,6 @@ The Python compiler currently generates the following bytecode instructions. **General instructions** -.. opcode:: STOP_CODE - - Indicates end-of-code to the compiler, not used by the interpreter. - - .. opcode:: NOP Do nothing code. Used as a placeholder by the bytecode optimizer. |