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 vstinner
Recipients Arfrever, neologix, pitrou, tim.peters, vstinner
Date 2013-11-28.01:29:48
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1385602189.57.0.576560655776.issue19787@psf.upfronthosting.co.za>
In-reply-to
Content
I ran test_tracemalloc on Linux and Windows and the test passed successfully.

It should probably be better to split the patch in two parts if the idea of changing Python/thread* files is accepted. (But initially, the issue comes from the tracemalloc module.)

set_reentrant() of tracemalloc.c:

+        assert(PyThread_get_key_value(tracemalloc_reentrant_key) == REENTRANT);

I also added a new assertion to ensure that set_reentrant(0) was not called twice. It was a suggesed of Jim Jewett.

This is unrelated to this issue and should be commited separatly.
History
Date User Action Args
2013-11-28 01:29:49vstinnersetrecipients: + vstinner, tim.peters, pitrou, Arfrever, neologix
2013-11-28 01:29:49vstinnersetmessageid: <1385602189.57.0.576560655776.issue19787@psf.upfronthosting.co.za>
2013-11-28 01:29:49vstinnerlinkissue19787 messages
2013-11-28 01:29:48vstinnercreate