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: Byte code WITH_CLEANUP missing, MAKE_CLOSURE wrong
Type: Stage:
Components: Documentation Versions: Python 2.5
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: georg.brandl Nosy List: georg.brandl, lpd
Priority: normal Keywords:

Created on 2007-08-06 05:14 by lpd, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg32590 - (view) Author: L. Peter Deutsch (lpd) Date: 2007-08-06 05:14
In section 30.10.1, WITH_CLEANUP is missing. The description of MAKE_CLOSURE is wrong: it says that the closure cells are the next N items on the stack below TOS, but in fact the closure cells are an N-element tuple at TOS1.
msg55167 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2007-08-23 17:54
Fixed in rev. 57324, thanks for the report.
History
Date User Action Args
2022-04-11 14:56:25adminsetgithub: 45280
2007-08-23 17:54:31georg.brandlsetstatus: open -> closed
assignee: georg.brandl
resolution: fixed
messages: + msg55167
nosy: + georg.brandl
2007-08-06 05:14:26lpdcreate