Re: How to stop a specific thread in Python 2.7?
Cameron Simpson via Python-list <[email protected]> Thu, 26 Sep 2024 11:06:03 +1000
| Newsgroups | gmane.comp.python.general,gmane.comp.python.tutor |
|---|---|
| Message-ID | <[email protected]> |
On 25Sep2024 22:56, marc nicole <[email protected]> wrote: >How to create a per-thread event in Python 2.7? Every time you make a Thread, make an Event. Pass it to the thread worker function and keep it to hand for your use outside the thread.