Commit 14e0895b authored by Guido van Rossum's avatar Guido van Rossum

Plug memory leak (variable names in code objects were being leaked!)

parent dab1083d
......@@ -468,6 +468,7 @@ r_object(p)
XDECREF(code);
XDECREF(consts);
XDECREF(names);
XDECREF(varnames);
XDECREF(filename);
XDECREF(name);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment