Re: Problem with uuid package when embedding a python interpreter

2009-07-01 Thread Aahz
In article <7d5cfbf0-38d5-4505-a93a-f321d0da7...@c36g2000yqn.googlegroups.com>, =?ISO-8859-1?Q?J=E9r=F4me_Fuselier?= wrote: > >I've tried to import a script in an embedded python intrepreter but >this script fails when it imports the uuid module. I have a >segmentation fault in Py_Finalize(). Yo

Re: Problem with uuid package when embedding a python interpreter

2009-07-01 Thread Jérôme Fuselier
On Jun 30, 7:02 pm, "Gabriel Genellina" wrote: > En Tue, 30 Jun 2009 13:05:42 -0300, Jérôme Fuselier > escribió: > > > > >   I've tried to import a script in an embedded python intrepreter but > > this script fails when it imports the uuid module. I have a > > segmentation fault in Py_Finalize().

Re: Problem with uuid package when embedding a python interpreter

2009-06-30 Thread Gabriel Genellina
En Tue, 30 Jun 2009 13:05:42 -0300, Jérôme Fuselier escribió: I've tried to import a script in an embedded python intrepreter but this script fails when it imports the uuid module. I have a segmentation fault in Py_Finalize(). #include "Python.h" void test() { Py_Initialize(); PyImp

Problem with uuid package when embedding a python interpreter

2009-06-30 Thread Jérôme Fuselier
Hello, I've tried to import a script in an embedded python intrepreter but this script fails when it imports the uuid module. I have a segmentation fault in Py_Finalize(). Here is a simple program which imitate my problem. main.c : #include "Python.h" void test() { Py_Initialize(); Py