Re: [Tutor] How to stop a specific thread in Python 2.7?

Liste des GroupesRevenir à cl python 
Sujet : Re: [Tutor] How to stop a specific thread in Python 2.7?
De : dciprus (at) *nospam* cisco.com (Dan Ciprus (dciprus))
Groupes : comp.lang.python
Date : 11. Oct 2024, 20:32:40
Autres entêtes
Message-ID : <mailman.18.1728672090.4695.python-list@python.org>
References : 1 2 3
Pièces jointes : signature.asc (application/pgp-signature)
Thank you for the hint !
On Fri, Oct 04, 2024 at 09:17:19AM GMT, Cameron Simpson wrote:
On 03Oct2024 22:12, Dan Ciprus (dciprus) <dciprus@cisco.com> wrote:
I'd be interested too :-).
>
Untested sketch:
>
   def make_thread(target, *a, E=None, **kw):
       '''
       Make a new Event E and Thread T, pass `[E,*a]` as the target         positional arguments.
       A shared preexisting Event may be supplied.
       Return a 2-tuple of `(T,E)`.
       '''
       if E is None:
         E = Event()
       T = Thread(target=target, args=[E, *a], kwargs=kw)
       return T, E
>
Something along those lines.
>
Cheers,
Cameron Simpson <cs@cskk.id.au>
--
Dan Ciprus
[ curl -L http://git.io/unix ]

Date Sujet#  Auteur
11 Oct 24 o Re: [Tutor] How to stop a specific thread in Python 2.7?1Dan Ciprus (dciprus)

Haut de la page

Les messages affichés proviennent d'usenet.

NewsPortal