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: Glossary entry for nested scope incorrect
Type: Stage:
Components: Documentation Versions: Python 3.1
process
Status: closed Resolution: out of date
Dependencies: Superseder:
Assigned To: docs@python Nosy List: benjamin.peterson, docs@python, ethan.furman
Priority: normal Keywords:

Created on 2010-06-29 20:41 by ethan.furman, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (2)
msg108949 - (view) Author: Ethan Furman (ethan.furman) * (Python committer) Date: 2010-06-29 20:41
It currently states "Note that nested scopes work only for reference and not for assignment which will always write to the innermost scope."

This should be updated to read, e.g. "Note that unless the new nonlocal keyword is used nested scopes work only for reference and not for assignment which will otherwise write to the innermost scope."
msg108950 - (view) Author: Benjamin Peterson (benjamin.peterson) * (Python committer) Date: 2010-06-29 20:54
Already fixed.
History
Date User Action Args
2022-04-11 14:57:03adminsetgithub: 53367
2010-06-29 20:54:59benjamin.petersonsetstatus: open -> closed

nosy: + benjamin.peterson
messages: + msg108950

resolution: out of date
2010-06-29 20:41:57ethan.furmancreate