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 amaury.forgeotdarc, jnoller, nirai, pitrou, vstinner
Date 2010-01-11.01:41:40
SpamBayes Score 4.3643877e-10
Marked as misclassified No
Message-id <1263174102.28.0.890625850985.issue7544@psf.upfronthosting.co.za>
In-reply-to
Content
> I'm not sure about autoTLSkey value (...)

After some tests (printf fun), it looks ok.

--

There is another problem in _testcapi: test_thread_state() calls directly PyThread_start_new_thread() and the thread function calls PyGILState_Ensure(). PyGILState_Ensure() would then require to create a new thread state (call PyThreadState_New()) because it was not done by PyThread_start_new_thread(). On low memory condition, we hit the same bug here.

Only thread and _testcapi modules calls directly PyThread_start_new_thread(). _*test*capi is reserved to tests, so I consider that we don't care about bugs under low memory condition in this module.
History
Date User Action Args
2010-01-11 01:41:42vstinnersetrecipients: + vstinner, amaury.forgeotdarc, pitrou, jnoller, nirai
2010-01-11 01:41:42vstinnersetmessageid: <1263174102.28.0.890625850985.issue7544@psf.upfronthosting.co.za>
2010-01-11 01:41:40vstinnerlinkissue7544 messages
2010-01-11 01:41:40vstinnercreate