Lines Matching +full:handle +full:- +full:sigint
1 :mod:`_thread` --- Low-level threading API
5 :synopsis: Low-level threading API.
8 single: light-weight processes
9 single: processes, light-weight
13 --------------
15 This module provides low-level primitives for working with multiple threads
16 (also called :dfn:`light-weight processes` or :dfn:`tasks`) --- multiple threads of
19 The :mod:`threading` module provides an easier to use and higher-level
33 Raised on thread-specific errors.
36 This is now a synonym of the built-in :exc:`RuntimeError`.
53 :func:`sys.unraisablehook` is called to handle the exception. The *object*
61 :func:`sys.unraisablehook` is now used to handle unhandled exceptions.
64 .. function:: interrupt_main(signum=signal.SIGINT, /)
71 If *signum* is not given, :data:`signal.SIGINT` is simulated.
110 be used e.g. to index a dictionary of thread-specific data. Thread identifiers
117 This is a non-negative integer.
118 Its value may be used to uniquely identify this particular thread system-wide
139 memory page size - platform documentation should be referred to for more
158 .. method:: lock.acquire(waitflag=1, timeout=-1)
162 time can acquire a lock --- that's their reason for existence).
169 If the floating-point *timeout* argument is present and positive, it
216 * It is not possible to interrupt the :meth:`acquire` method on a lock --- the