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 brett.cannon
Recipients brett.cannon, dino.viehland, jeethu
Date 2018-07-13.22:42:22
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1531521742.77.0.56676864532.issue32584@psf.upfronthosting.co.za>
In-reply-to
Content
co_extra_freefuncs is an array of pointers, so there's no way for it to be uninitialized unless you didn't initialize the interpreter state (https://github.com/python/cpython/blob/b193fa996a746111252156f11fb14c12fd6267e6/Include/pystate.h#L155). And looking at your gdb session it shows the memory wipeout pattern which means you're accessing an interpreter state that has already been freed itself. IOW I don't think this is a PEP 523 issue specifically.
History
Date User Action Args
2018-07-13 22:42:22brett.cannonsetrecipients: + brett.cannon, dino.viehland, jeethu
2018-07-13 22:42:22brett.cannonsetmessageid: <1531521742.77.0.56676864532.issue32584@psf.upfronthosting.co.za>
2018-07-13 22:42:22brett.cannonlinkissue32584 messages
2018-07-13 22:42:22brett.cannoncreate