Hi

I'am a member of a team which try to integrate python in one of our software but something is terribly wrong with it.
  the python C Api forgot (or do it intentionnaly ?)  to release a lot of memory when Py_finalize() is called
even with a simple :

int main()
{
     Py_initialize();
     Py_finalize();
     return 0;
}

We compiled this simple example with python 2.5 and 3.0 alpha and there 's always
memory leaks .  Does someone know if it will be fixed in  python 3.0  (stable  version) .

We read that this leak are allocation which doesn't grow with time but for us it's not a correct behavior, we don't want memory leak at the end of our program.

Well if no fixs exist or are planned we will consider to try to manage memory by ourself (by redefining the allocations functions used by python) or too use another script language (lua probably)

Lib team

__________________________________________________
Do You Yahoo!?
En finir avec le spam? Yahoo! Mail vous offre la meilleure protection possible contre les messages non sollicités
http://mail.yahoo.fr Yahoo! Mail
--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to