[issue13418] Embedded Python memory leak

2013-07-09 Thread Martin v . Löwis
Martin v. Löwis added the comment: Ok, closing it. -- status: languishing -> closed ___ Python tracker ___ ___ Python-bugs-list mailin

[issue13418] Embedded Python memory leak

2013-07-08 Thread Christian Heimes
Christian Heimes added the comment: Martin, can we close this issue or do you want to keep it around? -- nosy: +christian.heimes resolution: -> wont fix status: open -> languishing ___ Python tracker _

[issue13418] Embedded Python memory leak

2011-11-21 Thread Asesh
Asesh added the comment: @Martin v. Löwis (loewis): thanks, I will try to do so in my free time -- ___ Python tracker ___ ___ Python-

[issue13418] Embedded Python memory leak

2011-11-20 Thread Martin v . Löwis
Martin v. Löwis added the comment: If you *really* want to solve this problem, you could start working on making Python release all memory at interpreter shutdown. Please understand that this project may well take several years to complete, but it would help not only your project, but also ma

[issue13418] Embedded Python memory leak

2011-11-17 Thread Asesh
Asesh added the comment: ok thanks for the replies. Actually I have python embedded in my game but now the real problem now is how do I differentiate from the real memory leak caused either by Python or by my application? Disabling memory leak check is not an option since it's been very helpf

[issue13418] Embedded Python memory leak

2011-11-17 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc added the comment: These are not memory leaks, but global state that the Python interpreter does not bother to free on exit. The amount of memory there is limited. Yes, I agree that this makes the basic memory checker built in Visual Studio completely useless. --

[issue13418] Embedded Python memory leak

2011-11-16 Thread Jesús Cea Avión
Changes by Jesús Cea Avión : -- nosy: +jcea ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[issue13418] Embedded Python memory leak

2011-11-16 Thread STINNER Victor
STINNER Victor added the comment: (The project example uses _CrtSetDbgFlag(_CRTDBG_LEAK_CHECK_DF | _CRTDBG_ALLOC_MEM_DF) to perform memory leak check.) -- nosy: +haypo ___ Python tracker _

[issue13418] Embedded Python memory leak

2011-11-16 Thread Asesh
New submission from Asesh : Well I just finished embedding Python in my application but even after calling Py_Finalize the debugger shows tons of memory leak. I just called Py_Initialize and then Py_Finalize then after exiting the application, the Visual C++ debugger shows tons of memory leaks