[issue1731706] tkinter memory leak problem

Martin v. Löwis report at bugs.python.org
Tue Feb 3 00:33:48 CET 2009


Martin v. Löwis <martin at v.loewis.de> added the comment:

> Besides, not calling ConditionFinalize doesn't introduce memory leaks

Are you sure about this?  On Unix, TclpFinalizeCondition does

        pthread_cond_destroy(pcondPtr);
        ckfree((char *) pcondPtr);

both of which release memory (IIUC). Likewise for Windows, except
that it calls DeleteCriticalSection.

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue1731706>
_______________________________________


More information about the Python-bugs-list mailing list