Message97569
| 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:42 | vstinner | set | recipients:
+ vstinner, amaury.forgeotdarc, pitrou, jnoller, nirai |
| 2010年01月11日 01:41:42 | vstinner | set | messageid: <1263174102.28.0.890625850985.issue7544@psf.upfronthosting.co.za> |
| 2010年01月11日 01:41:40 | vstinner | link | issue7544 messages |
| 2010年01月11日 01:41:40 | vstinner | create |
|