This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author amaury.forgeotdarc
Recipients amaury.forgeotdarc, dominic.lavoie
Date 2008-07-09.17:06:37
SpamBayes Score 0.13294102
Marked as misclassified No
Message-id <1215623198.96.0.107859835668.issue3328@psf.upfronthosting.co.za>
In-reply-to
Content
No, PyTuple_SET_ITEM() "steals" a reference to its argument, so that
ownership is transferred to the tuple.
The reference will be released when the tuple is disposed, with
Py_DECREF(arg).

What makes you think that there is a reference leak? Do you have a test
case?
History
Date User Action Args
2008-07-09 17:06:39amaury.forgeotdarcsetspambayes_score: 0.132941 -> 0.13294102
recipients: + amaury.forgeotdarc, dominic.lavoie
2008-07-09 17:06:38amaury.forgeotdarcsetspambayes_score: 0.132941 -> 0.132941
messageid: <1215623198.96.0.107859835668.issue3328@psf.upfronthosting.co.za>
2008-07-09 17:06:38amaury.forgeotdarclinkissue3328 messages
2008-07-09 17:06:37amaury.forgeotdarccreate