Message114183
While working on #9425, I usually hit two annoying issues:
- _PyObject_Dump() crashs (assertion error) if I call it (with gdb) in Py_InitializeEx()
- because of python-gdb.py, gdb does segfault (I don't know yet where it does come from)
So I'm back on the GIL topic: I still would like to initialize the GIL earlier in Py_InitializeEx(). As Amaury wrote, I think that the right place is just after "(void) PyThreadState_Swap(tstate);". This is exactly what does my new patch (for py3k).
I think that only python 3.2 should be patched. |
|
| Date |
User |
Action |
Args |
| 2010-08-17 22:14:07 | vstinner | set | recipients:
+ vstinner, tim.peters, loewis, amaury.forgeotdarc, pitrou |
| 2010-08-17 22:14:07 | vstinner | set | messageid: <[email protected]> |
| 2010-08-17 22:14:05 | vstinner | link | issue8063 messages |
| 2010-08-17 22:14:05 | vstinner | create | |
|