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.

Author ncoghlan
Recipients doerwalter, ncoghlan, pitrou, vstinner
Date 2013-11-25.21:19:35
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <CADiSq7cLxXZcYQX+1rx0wQWOjVe64+q0DXQUwrrwtkOPzd5yAA@mail.gmail.com>
In-reply-to <1385399558.07.0.628948722486.issue19585@psf.upfronthosting.co.za>
Content
A nested function will always share the code object between its instances -
the nested code object is a compile time constant stored as part of the
containing code object.

Any code object attribute must be consistent for the lifetime of the object.
History
Date User Action Args
2013-11-25 21:19:35ncoghlansetrecipients: + ncoghlan, doerwalter, pitrou, vstinner
2013-11-25 21:19:35ncoghlanlinkissue19585 messages
2013-11-25 21:19:35ncoghlancreate