]> granicus.if.org Git - python/commitdiff
#2161: Fix opcode name.
authorGeorg Brandl <georg@python.org>
Sat, 23 Feb 2008 15:43:48 +0000 (15:43 +0000)
committerGeorg Brandl <georg@python.org>
Sat, 23 Feb 2008 15:43:48 +0000 (15:43 +0000)
Doc/library/dis.rst

index 8236a9cd885d2e2f9f75f6f3f3a458a6c8af52f5..c03feb771e667c8488b7b4a89224d2e6b9f5f0ef 100644 (file)
@@ -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.