commit | 507507473e7a83e3380885965e6fd341d2961629 | [log] [tgz] |
---|---|---|
author | Antoine Pitrou <solipsis@pitrou.net> | Sun Jul 08 12:43:32 2012 +0200 |
committer | Antoine Pitrou <solipsis@pitrou.net> | Sun Jul 08 12:43:32 2012 +0200 |
tree | f630b5b0c542f0b366ae1026526d56bc639403a3 | |
parent | bc07a5c9136c316383550ef38299792ab07eb167 [diff] [blame] |
Issue #15291: Fix a memory leak where AST nodes where not properly deallocated.
diff --git a/Python/Python-ast.c b/Python/Python-ast.c index 4ca269f..60147fa 100644 --- a/Python/Python-ast.c +++ b/Python/Python-ast.c
@@ -464,6 +464,7 @@ ast_dealloc(AST_object *self) { Py_CLEAR(self->dict); + Py_TYPE(self)->tp_free(self); } static int