commit | 5972493383434e34a8ed00b3fecbfd7aaa484003 | [log] [tgz] |
---|---|---|
author | Georg Brandl <georg@python.org> | Sat Feb 23 15:43:48 2008 +0000 |
committer | Georg Brandl <georg@python.org> | Sat Feb 23 15:43:48 2008 +0000 |
tree | 199fe0f212713466e78ae5bf56648f55c2116b49 | |
parent | b678f985113350e60e0121554939bbaacc1166e6 [diff] [blame] |
#2161: Fix opcode name.
diff --git a/Doc/library/dis.rst b/Doc/library/dis.rst index 8236a9c..c03feb7 100644 --- a/Doc/library/dis.rst +++ b/Doc/library/dis.rst
@@ -544,7 +544,7 @@ .. opcode:: STORE_NAME (namei) Implements ``name = TOS``. *namei* is the index of *name* in the attribute - :attr:`co_names` of the code object. The compiler tries to use ``STORE_LOCAL`` + :attr:`co_names` of the code object. The compiler tries to use ``STORE_FAST`` or ``STORE_GLOBAL`` if possible.