| commit | 774267bbb9ac66c89e6e1781c19730a58c772752 | [log] [tgz] |
|---|---|---|
| author | Bram Moolenaar <Bram@vim.org> | Tue May 21 20:51:59 2013 +0200 |
| committer | Bram Moolenaar <Bram@vim.org> | Tue May 21 20:51:59 2013 +0200 |
| tree | b284bdfe40281a035956ac88f732e7976714da8d | |
| parent | a7b64ce74e857d4516b87ca80c850e5ef6324ba6 [diff] |
updated for version 7.3.998
Problem: Python: garbage collection issues.
Solution: Fix the GC issues: Use proper DESTRUCTOR_FINISH: avoids negative
refcounts, use PyObject_GC_* for objects with tp_traverse and
tp_clear, add RangeTraverse and RangeClear, use Py_XDECREF in some
places. (ZyX)