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.

作者 pitrou
收信人 neologix, pitrou, vstinner
日期 2011-06-11.16:12:38
SpamBayes Score 0.07395233
Marked as misclassified
Message-id <1307808759.44.0.0373389634555.issue12310@psf.upfronthosting.co.za>
In-reply-to
内容
Less disruptive approach:

        old_process = _current_process
        _current_process = self
        try:
            util._finalizer_registry.clear()
            util._run_after_forkers()
        finally:
            del old_process

This will delay finalization of the old process object until after _run_after_forkers() is executed, without (hopefully) messing with semantics.
历史
日期 用户 动作 参数
2011-06-11 16:12:39pitrou修改recipients: + pitrou, vstinner, neologix
2011-06-11 16:12:39pitrou修改messageid: <1307808759.44.0.0373389634555.issue12310@psf.upfronthosting.co.za>
2011-06-11 16:12:38pitrou链接issue12310 messages
2011-06-11 16:12:38pitrou创建