On Sun, 2006-02-19 at 20:34 -0500, Neil Conway wrote: > Attached is a patch that fixes three Python reference leaks in > PLy_traceback(): the objects returned by PyErr_Fetch() are owned by the > caller, so their reference count should be decremented.
Applied to HEAD and back branches. I also noticed a minor bug in PLy_modify_tuple(): we don't own a reference to `platt', so we shouldn't try to decrement its refcount. I only bothered fixing the latter bug in 8.0+ -Neil ---------------------------(end of broadcast)--------------------------- TIP 9: In versions below 8.0, the planner will ignore your desire to choose an index scan if your joining column's datatypes do not match