This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: STORE_LOCAL byte code is not documented
Type: enhancement Stage:
Components: Documentation Versions: Python 2.5
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: georg.brandl, gpolo, troeger
Priority: normal Keywords:

Created on 2008-02-22 13:25 by troeger, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (3)
msg62685 - (view) Author: Peter Tröger (troeger) Date: 2008-02-22 13:25
The byte code STORE_LOCAL is referenced in the description of
STORE_NAME, but has no own entry in the list. See here:

http://docs.python.org/lib/bytecodes.html
msg62741 - (view) Author: Guilherme Polo (gpolo) * (Python committer) Date: 2008-02-23 15:13
I believe it should say "STORE_FAST or STORE_GLOBAL" instead.
msg62754 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2008-02-23 15:44
Indeed. Fixed in r60988.
History
Date User Action Args
2022-04-11 14:56:31adminsetgithub: 46414
2008-02-23 15:44:02georg.brandlsetstatus: open -> closed
resolution: fixed
messages: + msg62754
nosy: + georg.brandl
2008-02-23 15:13:08gpolosetnosy: + gpolo
messages: + msg62741
2008-02-22 13:25:46troegercreate