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 ggenellina
Recipients
Date 2007-07-19.20:16:15
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
The extra reference is hold in the traceback, which itself is hold in sys.last_traceback
PyErr_Print calls PyErr_PrintEx with set_sys_last_vars=1, indicating that sys.last_type/last_value/last_traceback should be set. 

<http://docs.python.org/lib/module-sys.html#l2h-5144> says: "These three variables are not always defined; they are set when an exception is not handled and the interpreter prints an error message and a stack traceback. [...] (Since there is only one interactive thread, thread-safety is not a concern for these variables, unlike for exc_type etc.)"

So there is no reference leak. The next exception printed will clear the extra reference. If that's not acceptable, you can: a) avoid calling PyErr_Print, or use PyErr_Print(0). b) explicitely set those three attributes to None. c) at least set sys.last_traceback to None.
History
Date User Action Args
2007-08-23 14:58:45adminlinkissue1756389 messages
2007-08-23 14:58:45admincreate