Martin v. Löwis <mar...@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 <rep...@bugs.python.org> <http://bugs.python.org/issue1731706> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com