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 pitrou
Recipients pitrou
Date 2010-05-10.23:32:09
SpamBayes Score 0.020308329
Marked as misclassified No
Message-id <1273534331.53.0.523751841318.issue8682@psf.upfronthosting.co.za>
In-reply-to
Content
PyWeakref_GetObject() returns a borrowed reference, which can therefore become invalid at any time (especially when the GIL gets released). This provides a way to crash the interpreter deliberately.
The returned reference should be incref'ed immediately before any other action is taken.
History
Date User Action Args
2010-05-10 23:32:11pitrousetrecipients: + pitrou
2010-05-10 23:32:11pitrousetmessageid: <1273534331.53.0.523751841318.issue8682@psf.upfronthosting.co.za>
2010-05-10 23:32:10pitroulinkissue8682 messages
2010-05-10 23:32:09pitroucreate