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 pitrou
Recipients eric.snow, piotr.dobrogost, pitrou, rhettinger, ssbarnea, tim.peters
Date 2015-04-05.11:42:09
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1428234129.21.0.580128435271.issue23841@psf.upfronthosting.co.za>
In-reply-to
Content
Concretely, the possible workarounds are:

- don't do anything complex in your __del__
- be prepared to deal with unexpected errors in your __del__
- starting from Python 3.4, don't define __del__ and use weakref.finalize() instead: https://docs.python.org/3/library/weakref.html#weakref.finalize
History
Date User Action Args
2015-04-05 11:42:09pitrousetrecipients: + pitrou, tim.peters, rhettinger, ssbarnea, eric.snow, piotr.dobrogost
2015-04-05 11:42:09pitrousetmessageid: <1428234129.21.0.580128435271.issue23841@psf.upfronthosting.co.za>
2015-04-05 11:42:09pitroulinkissue23841 messages
2015-04-05 11:42:09pitroucreate