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 Kain94, pitrou
Date 2010-04-21.13:27:25
SpamBayes Score 0.01079587
Marked as misclassified No
Message-id <1271856448.12.0.232035342224.issue8486@psf.upfronthosting.co.za>
In-reply-to
Content
> Yes, I agree when Event objects are used to sync threads. But in my
> case, I'm using them like signals to terminate some server's thread
> through a proper way.

In this case, you don't have to use an Event. A boolean attribute on one
of your objects is enough.
(similarly, you would use a "volatile" variable in C)
History
Date User Action Args
2010-04-21 13:27:28pitrousetrecipients: + pitrou, Kain94
2010-04-21 13:27:28pitrousetmessageid: <1271856448.12.0.232035342224.issue8486@psf.upfronthosting.co.za>
2010-04-21 13:27:25pitroulinkissue8486 messages
2010-04-21 13:27:25pitroucreate