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 sbt
Recipients Dustin.Kirkland, pitrou, sbt
Date 2012-03-15.14:25:09
SpamBayes Score 0.020407455
Marked as misclassified No
Message-id <1331821510.72.0.328083421451.issue14308@psf.upfronthosting.co.za>
In-reply-to
Content
_DummyThread.__init__() explicitly deletes self._Thread__block:

    def __init__(self):
        Thread.__init__(self, name=_newname("Dummy-%d"))

        # Thread.__block consumes an OS-level locking primitive, which
        # can never be used by a _DummyThread.  Since a _DummyThread
        # instance is immortal, that's bad, so release this resource.
        del self._Thread__block
        ^^^^^^^^^^^^^^^^^^^^^^^
History
Date User Action Args
2012-03-15 14:25:10sbtsetrecipients: + sbt, pitrou, Dustin.Kirkland
2012-03-15 14:25:10sbtsetmessageid: <1331821510.72.0.328083421451.issue14308@psf.upfronthosting.co.za>
2012-03-15 14:25:10sbtlinkissue14308 messages
2012-03-15 14:25:09sbtcreate