Comment 4 for bug 785501

Revision history for this message
Andrea Corbellini (andrea.corbellini) wrote :

AFAIK, terminator is pure-Python. So I do not think that it's leaking really memory. Instead, I think that it's creating some kind of temporary object without deleting them (probably because of circular references).

I'll try to do some debugging this week or the next one. If anyone is interested, checking for circular references is simple: drop into pdb and "import gc; gc.collect(); gc.garbage".