From: Georg Brandl Date: Sat, 23 Feb 2008 15:43:48 +0000 (+0000) Subject: #2161: Fix opcode name. X-Git-Tag: v2.6a1~98 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5972493383434e34a8ed00b3fecbfd7aaa484003;p=thirdparty%2FPython%2Fcpython.git #2161: Fix opcode name. --- diff --git a/Doc/library/dis.rst b/Doc/library/dis.rst index 8236a9cd885d..c03feb771e66 100644 --- a/Doc/library/dis.rst +++ b/Doc/library/dis.rst @@ -544,7 +544,7 @@ the more significant byte last. .. 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.