[issue6742] Embedding python into shared library crash on AIX

2014-03-22 Thread Mark Lawrence
Mark Lawrence added the comment: msg192851 states that this should be closed. If somebody agrees with that statement would they please do the honours. -- nosy: +BreamoreBoy ___ Python tracker _

[issue6742] Embedding python into shared library crash on AIX

2013-07-11 Thread Sébastien Sablé
Sébastien Sablé added the comment: This issue has been fixed as part of issue 941346 and should be closed in my opinion. -- ___ Python tracker ___ ___

[issue6742] Embedding python into shared library crash on AIX

2013-07-10 Thread Christian Heimes
Changes by Christian Heimes : -- status: open -> languishing ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: htt

[issue6742] Embedding python into shared library crash on AIX

2010-09-10 Thread Sébastien Sablé
Sébastien Sablé added the comment: You may want to take a look at issue 941346 in order to compile libpython2.6.so on AIX. I also embed python in my AIX application, and I had no problem once python was compiled as share thanks to the patch provided in the other issue. -- nosy: +sabl

[issue6742] Embedding python into shared library crash on AIX

2009-08-20 Thread Martin v . Löwis
Martin v. Löwis added the comment: If you get differing results from Py_IsInitialized, my guess is that you managed to link two different copies of the Python VM into your application, each with its own set of global variables. An AIX expert would be required to diagnose this in more detail; un

[issue6742] Embedding python into shared library crash on AIX

2009-08-20 Thread damahay123
New submission from damahay123 : Hi there, I'm trying to embedding my python code into a .so on AIX and load it with my main application. Since there is no libpython2.6.so available on AIX, I have to link my .so with libpython2.6.a. I have to make some twist to make it compile. And so far so good