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 gregory.p.smith
Recipients amaury.forgeotdarc, georg.brandl, ggenellina, gregory.p.smith, gvanrossum, pitrou, rhettinger, spiv
Date 2008-01-21.23:42:50
SpamBayes Score 0.45695123
Marked as misclassified No
Message-id <1200958971.74.0.73456978355.issue1703448@psf.upfronthosting.co.za>
In-reply-to
Content
why not just do this?

    finally:
        with _active_limbo_lock:
            self.__stop()
            try:
                self.__delete()
            except:
                pass

(i believe with works on locks?  if not turn that into an acquire, try:
finally: release)
History
Date User Action Args
2008-01-21 23:42:51gregory.p.smithsetspambayes_score: 0.456951 -> 0.45695123
recipients: + gregory.p.smith, gvanrossum, georg.brandl, rhettinger, spiv, amaury.forgeotdarc, ggenellina, pitrou
2008-01-21 23:42:51gregory.p.smithsetspambayes_score: 0.456951 -> 0.456951
messageid: <1200958971.74.0.73456978355.issue1703448@psf.upfronthosting.co.za>
2008-01-21 23:42:50gregory.p.smithlinkissue1703448 messages
2008-01-21 23:42:50gregory.p.smithcreate