blob: 9cc62be982dc6f987e067f0f2e8d069197ddc3da [file] [log] [blame]
Georg Brandl116aa622007-08-15 14:28:22 +00001
2:mod:`threading` --- Higher-level threading interface
3=====================================================
4
5.. module:: threading
6 :synopsis: Higher-level threading interface.
7
8
Georg Brandl2067bfd2008-05-25 13:05:15 +00009This module constructs higher-level threading interfaces on top of the lower
10level :mod:`_thread` module. See also the :mod:`queue` module.
Georg Brandl116aa622007-08-15 14:28:22 +000011
12The :mod:`dummy_threading` module is provided for situations where
Georg Brandl2067bfd2008-05-25 13:05:15 +000013:mod:`threading` cannot be used because :mod:`_thread` is missing.
Georg Brandl116aa622007-08-15 14:28:22 +000014
Benjamin Peterson8bdd5452008-08-18 22:38:41 +000015.. note::
16
Benjamin Petersonb3085c92008-09-01 23:09:31 +000017 While they are not listed below, the ``camelCase`` names used for some
18 methods and functions in this module in the Python 2.x series are still
19 supported by this module.
Benjamin Peterson8bdd5452008-08-18 22:38:41 +000020
Georg Brandl116aa622007-08-15 14:28:22 +000021This module defines the following functions and objects:
22
23
Benjamin Peterson672b8032008-06-11 19:14:14 +000024.. function:: active_count()
Georg Brandl116aa622007-08-15 14:28:22 +000025
26 Return the number of :class:`Thread` objects currently alive. The returned
27 count is equal to the length of the list returned by :func:`enumerate`.
28
29
30.. function:: Condition()
31 :noindex:
32
33 A factory function that returns a new condition variable object. A condition
34 variable allows one or more threads to wait until they are notified by another
35 thread.
36
37
Benjamin Peterson672b8032008-06-11 19:14:14 +000038.. function:: current_thread()
Georg Brandl116aa622007-08-15 14:28:22 +000039
40 Return the current :class:`Thread` object, corresponding to the caller's thread
41 of control. If the caller's thread of control was not created through the
42 :mod:`threading` module, a dummy thread object with limited functionality is
43 returned.
44
45
46.. function:: enumerate()
47
Benjamin Peterson672b8032008-06-11 19:14:14 +000048 Return a list of all :class:`Thread` objects currently alive. The list
49 includes daemonic threads, dummy thread objects created by
50 :func:`current_thread`, and the main thread. It excludes terminated threads
51 and threads that have not yet been started.
Georg Brandl116aa622007-08-15 14:28:22 +000052
53
54.. function:: Event()
55 :noindex:
56
57 A factory function that returns a new event object. An event manages a flag
58 that can be set to true with the :meth:`set` method and reset to false with the
59 :meth:`clear` method. The :meth:`wait` method blocks until the flag is true.
60
61
62.. class:: local
63
64 A class that represents thread-local data. Thread-local data are data whose
65 values are thread specific. To manage thread-local data, just create an
66 instance of :class:`local` (or a subclass) and store attributes on it::
67
68 mydata = threading.local()
69 mydata.x = 1
70
71 The instance's values will be different for separate threads.
72
73 For more details and extensive examples, see the documentation string of the
74 :mod:`_threading_local` module.
75
Georg Brandl116aa622007-08-15 14:28:22 +000076
77.. function:: Lock()
78
79 A factory function that returns a new primitive lock object. Once a thread has
80 acquired it, subsequent attempts to acquire it block, until it is released; any
81 thread may release it.
82
83
84.. function:: RLock()
85
86 A factory function that returns a new reentrant lock object. A reentrant lock
87 must be released by the thread that acquired it. Once a thread has acquired a
88 reentrant lock, the same thread may acquire it again without blocking; the
89 thread must release it once for each time it has acquired it.
90
91
92.. function:: Semaphore([value])
93 :noindex:
94
95 A factory function that returns a new semaphore object. A semaphore manages a
96 counter representing the number of :meth:`release` calls minus the number of
97 :meth:`acquire` calls, plus an initial value. The :meth:`acquire` method blocks
98 if necessary until it can return without making the counter negative. If not
99 given, *value* defaults to 1.
100
101
102.. function:: BoundedSemaphore([value])
103
104 A factory function that returns a new bounded semaphore object. A bounded
105 semaphore checks to make sure its current value doesn't exceed its initial
106 value. If it does, :exc:`ValueError` is raised. In most situations semaphores
107 are used to guard resources with limited capacity. If the semaphore is released
108 too many times it's a sign of a bug. If not given, *value* defaults to 1.
109
110
111.. class:: Thread
112
113 A class that represents a thread of control. This class can be safely
114 subclassed in a limited fashion.
115
116
117.. class:: Timer
118
119 A thread that executes a function after a specified interval has passed.
120
121
122.. function:: settrace(func)
123
124 .. index:: single: trace function
125
126 Set a trace function for all threads started from the :mod:`threading` module.
127 The *func* will be passed to :func:`sys.settrace` for each thread, before its
128 :meth:`run` method is called.
129
Georg Brandl116aa622007-08-15 14:28:22 +0000130
131.. function:: setprofile(func)
132
133 .. index:: single: profile function
134
135 Set a profile function for all threads started from the :mod:`threading` module.
136 The *func* will be passed to :func:`sys.setprofile` for each thread, before its
137 :meth:`run` method is called.
138
Georg Brandl116aa622007-08-15 14:28:22 +0000139
140.. function:: stack_size([size])
141
142 Return the thread stack size used when creating new threads. The optional
143 *size* argument specifies the stack size to be used for subsequently created
144 threads, and must be 0 (use platform or configured default) or a positive
145 integer value of at least 32,768 (32kB). If changing the thread stack size is
146 unsupported, a :exc:`ThreadError` is raised. If the specified stack size is
147 invalid, a :exc:`ValueError` is raised and the stack size is unmodified. 32kB
148 is currently the minimum supported stack size value to guarantee sufficient
149 stack space for the interpreter itself. Note that some platforms may have
150 particular restrictions on values for the stack size, such as requiring a
151 minimum stack size > 32kB or requiring allocation in multiples of the system
152 memory page size - platform documentation should be referred to for more
153 information (4kB pages are common; using multiples of 4096 for the stack size is
154 the suggested approach in the absence of more specific information).
155 Availability: Windows, systems with POSIX threads.
156
Georg Brandl116aa622007-08-15 14:28:22 +0000157
158Detailed interfaces for the objects are documented below.
159
160The design of this module is loosely based on Java's threading model. However,
161where Java makes locks and condition variables basic behavior of every object,
162they are separate objects in Python. Python's :class:`Thread` class supports a
163subset of the behavior of Java's Thread class; currently, there are no
164priorities, no thread groups, and threads cannot be destroyed, stopped,
165suspended, resumed, or interrupted. The static methods of Java's Thread class,
166when implemented, are mapped to module-level functions.
167
168All of the methods described below are executed atomically.
169
170
171.. _lock-objects:
172
173Lock Objects
174------------
175
176A primitive lock is a synchronization primitive that is not owned by a
177particular thread when locked. In Python, it is currently the lowest level
Georg Brandl2067bfd2008-05-25 13:05:15 +0000178synchronization primitive available, implemented directly by the :mod:`_thread`
Georg Brandl116aa622007-08-15 14:28:22 +0000179extension module.
180
181A primitive lock is in one of two states, "locked" or "unlocked". It is created
182in the unlocked state. It has two basic methods, :meth:`acquire` and
183:meth:`release`. When the state is unlocked, :meth:`acquire` changes the state
184to locked and returns immediately. When the state is locked, :meth:`acquire`
185blocks until a call to :meth:`release` in another thread changes it to unlocked,
186then the :meth:`acquire` call resets it to locked and returns. The
187:meth:`release` method should only be called in the locked state; it changes the
188state to unlocked and returns immediately. If an attempt is made to release an
189unlocked lock, a :exc:`RuntimeError` will be raised.
190
191When more than one thread is blocked in :meth:`acquire` waiting for the state to
192turn to unlocked, only one thread proceeds when a :meth:`release` call resets
193the state to unlocked; which one of the waiting threads proceeds is not defined,
194and may vary across implementations.
195
196All methods are executed atomically.
197
198
199.. method:: Lock.acquire([blocking=1])
200
201 Acquire a lock, blocking or non-blocking.
202
203 When invoked without arguments, block until the lock is unlocked, then set it to
204 locked, and return true.
205
206 When invoked with the *blocking* argument set to true, do the same thing as when
207 called without arguments, and return true.
208
209 When invoked with the *blocking* argument set to false, do not block. If a call
210 without an argument would block, return false immediately; otherwise, do the
211 same thing as when called without arguments, and return true.
212
213
214.. method:: Lock.release()
215
216 Release a lock.
217
218 When the lock is locked, reset it to unlocked, and return. If any other threads
219 are blocked waiting for the lock to become unlocked, allow exactly one of them
220 to proceed.
221
222 Do not call this method when the lock is unlocked.
223
224 There is no return value.
225
226
227.. _rlock-objects:
228
229RLock Objects
230-------------
231
232A reentrant lock is a synchronization primitive that may be acquired multiple
233times by the same thread. Internally, it uses the concepts of "owning thread"
234and "recursion level" in addition to the locked/unlocked state used by primitive
235locks. In the locked state, some thread owns the lock; in the unlocked state,
236no thread owns it.
237
238To lock the lock, a thread calls its :meth:`acquire` method; this returns once
239the thread owns the lock. To unlock the lock, a thread calls its
240:meth:`release` method. :meth:`acquire`/:meth:`release` call pairs may be
241nested; only the final :meth:`release` (the :meth:`release` of the outermost
242pair) resets the lock to unlocked and allows another thread blocked in
243:meth:`acquire` to proceed.
244
245
246.. method:: RLock.acquire([blocking=1])
247
248 Acquire a lock, blocking or non-blocking.
249
250 When invoked without arguments: if this thread already owns the lock, increment
251 the recursion level by one, and return immediately. Otherwise, if another
252 thread owns the lock, block until the lock is unlocked. Once the lock is
253 unlocked (not owned by any thread), then grab ownership, set the recursion level
254 to one, and return. If more than one thread is blocked waiting until the lock
255 is unlocked, only one at a time will be able to grab ownership of the lock.
256 There is no return value in this case.
257
258 When invoked with the *blocking* argument set to true, do the same thing as when
259 called without arguments, and return true.
260
261 When invoked with the *blocking* argument set to false, do not block. If a call
262 without an argument would block, return false immediately; otherwise, do the
263 same thing as when called without arguments, and return true.
264
265
266.. method:: RLock.release()
267
268 Release a lock, decrementing the recursion level. If after the decrement it is
269 zero, reset the lock to unlocked (not owned by any thread), and if any other
270 threads are blocked waiting for the lock to become unlocked, allow exactly one
271 of them to proceed. If after the decrement the recursion level is still
272 nonzero, the lock remains locked and owned by the calling thread.
273
274 Only call this method when the calling thread owns the lock. A
275 :exc:`RuntimeError` is raised if this method is called when the lock is
276 unlocked.
277
278 There is no return value.
279
280
281.. _condition-objects:
282
283Condition Objects
284-----------------
285
286A condition variable is always associated with some kind of lock; this can be
287passed in or one will be created by default. (Passing one in is useful when
288several condition variables must share the same lock.)
289
290A condition variable has :meth:`acquire` and :meth:`release` methods that call
291the corresponding methods of the associated lock. It also has a :meth:`wait`
Georg Brandlf9926402008-06-13 06:32:25 +0000292method, and :meth:`notify` and :meth:`notify_all` methods. These three must only
Georg Brandl116aa622007-08-15 14:28:22 +0000293be called when the calling thread has acquired the lock, otherwise a
294:exc:`RuntimeError` is raised.
295
296The :meth:`wait` method releases the lock, and then blocks until it is awakened
Georg Brandlf9926402008-06-13 06:32:25 +0000297by a :meth:`notify` or :meth:`notify_all` call for the same condition variable in
Georg Brandl116aa622007-08-15 14:28:22 +0000298another thread. Once awakened, it re-acquires the lock and returns. It is also
299possible to specify a timeout.
300
301The :meth:`notify` method wakes up one of the threads waiting for the condition
Georg Brandlf9926402008-06-13 06:32:25 +0000302variable, if any are waiting. The :meth:`notify_all` method wakes up all threads
Georg Brandl116aa622007-08-15 14:28:22 +0000303waiting for the condition variable.
304
Georg Brandlf9926402008-06-13 06:32:25 +0000305Note: the :meth:`notify` and :meth:`notify_all` methods don't release the lock;
Georg Brandl116aa622007-08-15 14:28:22 +0000306this means that the thread or threads awakened will not return from their
307:meth:`wait` call immediately, but only when the thread that called
Georg Brandlf9926402008-06-13 06:32:25 +0000308:meth:`notify` or :meth:`notify_all` finally relinquishes ownership of the lock.
Georg Brandl116aa622007-08-15 14:28:22 +0000309
310Tip: the typical programming style using condition variables uses the lock to
311synchronize access to some shared state; threads that are interested in a
312particular change of state call :meth:`wait` repeatedly until they see the
313desired state, while threads that modify the state call :meth:`notify` or
Georg Brandlf9926402008-06-13 06:32:25 +0000314:meth:`notify_all` when they change the state in such a way that it could
Georg Brandl116aa622007-08-15 14:28:22 +0000315possibly be a desired state for one of the waiters. For example, the following
316code is a generic producer-consumer situation with unlimited buffer capacity::
317
318 # Consume one item
319 cv.acquire()
320 while not an_item_is_available():
321 cv.wait()
322 get_an_available_item()
323 cv.release()
324
325 # Produce one item
326 cv.acquire()
327 make_an_item_available()
328 cv.notify()
329 cv.release()
330
Georg Brandlf9926402008-06-13 06:32:25 +0000331To choose between :meth:`notify` and :meth:`notify_all`, consider whether one
Georg Brandl116aa622007-08-15 14:28:22 +0000332state change can be interesting for only one or several waiting threads. E.g.
333in a typical producer-consumer situation, adding one item to the buffer only
334needs to wake up one consumer thread.
335
336
337.. class:: Condition([lock])
338
339 If the *lock* argument is given and not ``None``, it must be a :class:`Lock` or
340 :class:`RLock` object, and it is used as the underlying lock. Otherwise, a new
341 :class:`RLock` object is created and used as the underlying lock.
342
343
344.. method:: Condition.acquire(*args)
345
346 Acquire the underlying lock. This method calls the corresponding method on the
347 underlying lock; the return value is whatever that method returns.
348
349
350.. method:: Condition.release()
351
352 Release the underlying lock. This method calls the corresponding method on the
353 underlying lock; there is no return value.
354
355
356.. method:: Condition.wait([timeout])
357
358 Wait until notified or until a timeout occurs. If the calling thread has not
359 acquired the lock when this method is called, a :exc:`RuntimeError` is raised.
360
361 This method releases the underlying lock, and then blocks until it is awakened
Georg Brandlf9926402008-06-13 06:32:25 +0000362 by a :meth:`notify` or :meth:`notify_all` call for the same condition variable in
Georg Brandl116aa622007-08-15 14:28:22 +0000363 another thread, or until the optional timeout occurs. Once awakened or timed
364 out, it re-acquires the lock and returns.
365
366 When the *timeout* argument is present and not ``None``, it should be a floating
367 point number specifying a timeout for the operation in seconds (or fractions
368 thereof).
369
370 When the underlying lock is an :class:`RLock`, it is not released using its
371 :meth:`release` method, since this may not actually unlock the lock when it was
372 acquired multiple times recursively. Instead, an internal interface of the
373 :class:`RLock` class is used, which really unlocks it even when it has been
374 recursively acquired several times. Another internal interface is then used to
375 restore the recursion level when the lock is reacquired.
376
377
378.. method:: Condition.notify()
379
380 Wake up a thread waiting on this condition, if any. Wait until notified or until
381 a timeout occurs. If the calling thread has not acquired the lock when this
382 method is called, a :exc:`RuntimeError` is raised.
383
384 This method wakes up one of the threads waiting for the condition variable, if
385 any are waiting; it is a no-op if no threads are waiting.
386
387 The current implementation wakes up exactly one thread, if any are waiting.
388 However, it's not safe to rely on this behavior. A future, optimized
389 implementation may occasionally wake up more than one thread.
390
391 Note: the awakened thread does not actually return from its :meth:`wait` call
392 until it can reacquire the lock. Since :meth:`notify` does not release the
393 lock, its caller should.
394
395
Benjamin Peterson672b8032008-06-11 19:14:14 +0000396.. method:: Condition.notify_all()
Georg Brandl116aa622007-08-15 14:28:22 +0000397
398 Wake up all threads waiting on this condition. This method acts like
399 :meth:`notify`, but wakes up all waiting threads instead of one. If the calling
400 thread has not acquired the lock when this method is called, a
401 :exc:`RuntimeError` is raised.
402
403
404.. _semaphore-objects:
405
406Semaphore Objects
407-----------------
408
409This is one of the oldest synchronization primitives in the history of computer
410science, invented by the early Dutch computer scientist Edsger W. Dijkstra (he
411used :meth:`P` and :meth:`V` instead of :meth:`acquire` and :meth:`release`).
412
413A semaphore manages an internal counter which is decremented by each
414:meth:`acquire` call and incremented by each :meth:`release` call. The counter
415can never go below zero; when :meth:`acquire` finds that it is zero, it blocks,
416waiting until some other thread calls :meth:`release`.
417
418
419.. class:: Semaphore([value])
420
421 The optional argument gives the initial *value* for the internal counter; it
422 defaults to ``1``. If the *value* given is less than 0, :exc:`ValueError` is
423 raised.
424
425
426.. method:: Semaphore.acquire([blocking])
427
428 Acquire a semaphore.
429
430 When invoked without arguments: if the internal counter is larger than zero on
431 entry, decrement it by one and return immediately. If it is zero on entry,
432 block, waiting until some other thread has called :meth:`release` to make it
433 larger than zero. This is done with proper interlocking so that if multiple
434 :meth:`acquire` calls are blocked, :meth:`release` will wake exactly one of them
435 up. The implementation may pick one at random, so the order in which blocked
436 threads are awakened should not be relied on. There is no return value in this
437 case.
438
439 When invoked with *blocking* set to true, do the same thing as when called
440 without arguments, and return true.
441
442 When invoked with *blocking* set to false, do not block. If a call without an
443 argument would block, return false immediately; otherwise, do the same thing as
444 when called without arguments, and return true.
445
446
447.. method:: Semaphore.release()
448
449 Release a semaphore, incrementing the internal counter by one. When it was zero
450 on entry and another thread is waiting for it to become larger than zero again,
451 wake up that thread.
452
453
454.. _semaphore-examples:
455
456:class:`Semaphore` Example
457^^^^^^^^^^^^^^^^^^^^^^^^^^
458
459Semaphores are often used to guard resources with limited capacity, for example,
460a database server. In any situation where the size of the resource size is
461fixed, you should use a bounded semaphore. Before spawning any worker threads,
462your main thread would initialize the semaphore::
463
464 maxconnections = 5
465 ...
466 pool_sema = BoundedSemaphore(value=maxconnections)
467
468Once spawned, worker threads call the semaphore's acquire and release methods
469when they need to connect to the server::
470
471 pool_sema.acquire()
472 conn = connectdb()
473 ... use connection ...
474 conn.close()
475 pool_sema.release()
476
477The use of a bounded semaphore reduces the chance that a programming error which
478causes the semaphore to be released more than it's acquired will go undetected.
479
480
481.. _event-objects:
482
483Event Objects
484-------------
485
486This is one of the simplest mechanisms for communication between threads: one
487thread signals an event and other threads wait for it.
488
489An event object manages an internal flag that can be set to true with the
490:meth:`set` method and reset to false with the :meth:`clear` method. The
491:meth:`wait` method blocks until the flag is true.
492
493
494.. class:: Event()
495
496 The internal flag is initially false.
497
498
Georg Brandlf9926402008-06-13 06:32:25 +0000499.. method:: Event.is_set()
Georg Brandl116aa622007-08-15 14:28:22 +0000500
501 Return true if and only if the internal flag is true.
502
503
504.. method:: Event.set()
505
506 Set the internal flag to true. All threads waiting for it to become true are
507 awakened. Threads that call :meth:`wait` once the flag is true will not block at
508 all.
509
510
511.. method:: Event.clear()
512
513 Reset the internal flag to false. Subsequently, threads calling :meth:`wait`
514 will block until :meth:`set` is called to set the internal flag to true again.
515
516
517.. method:: Event.wait([timeout])
518
519 Block until the internal flag is true. If the internal flag is true on entry,
520 return immediately. Otherwise, block until another thread calls :meth:`set` to
521 set the flag to true, or until the optional timeout occurs.
522
523 When the timeout argument is present and not ``None``, it should be a floating
524 point number specifying a timeout for the operation in seconds (or fractions
525 thereof).
526
527
528.. _thread-objects:
529
530Thread Objects
531--------------
532
533This class represents an activity that is run in a separate thread of control.
534There are two ways to specify the activity: by passing a callable object to the
535constructor, or by overriding the :meth:`run` method in a subclass. No other
536methods (except for the constructor) should be overridden in a subclass. In
537other words, *only* override the :meth:`__init__` and :meth:`run` methods of
538this class.
539
540Once a thread object is created, its activity must be started by calling the
541thread's :meth:`start` method. This invokes the :meth:`run` method in a
542separate thread of control.
543
544Once the thread's activity is started, the thread is considered 'alive'. It
545stops being alive when its :meth:`run` method terminates -- either normally, or
Georg Brandlf9926402008-06-13 06:32:25 +0000546by raising an unhandled exception. The :meth:`is_alive` method tests whether the
Georg Brandl116aa622007-08-15 14:28:22 +0000547thread is alive.
548
549Other threads can call a thread's :meth:`join` method. This blocks the calling
550thread until the thread whose :meth:`join` method is called is terminated.
551
Benjamin Peterson8bdd5452008-08-18 22:38:41 +0000552A thread has a name. The name can be passed to the constructor, and read or
553changed through the :attr:`name` attribute.
Georg Brandl116aa622007-08-15 14:28:22 +0000554
555A thread can be flagged as a "daemon thread". The significance of this flag is
556that the entire Python program exits when only daemon threads are left. The
Benjamin Peterson8bdd5452008-08-18 22:38:41 +0000557initial value is inherited from the creating thread. The flag can be set
558through the :attr:`daemon` attribute.
Georg Brandl116aa622007-08-15 14:28:22 +0000559
560There is a "main thread" object; this corresponds to the initial thread of
561control in the Python program. It is not a daemon thread.
562
563There is the possibility that "dummy thread objects" are created. These are
564thread objects corresponding to "alien threads", which are threads of control
565started outside the threading module, such as directly from C code. Dummy
566thread objects have limited functionality; they are always considered alive and
567daemonic, and cannot be :meth:`join`\ ed. They are never deleted, since it is
568impossible to detect the termination of alien threads.
569
570
571.. class:: Thread(group=None, target=None, name=None, args=(), kwargs={})
572
573 This constructor should always be called with keyword arguments. Arguments are:
574
575 *group* should be ``None``; reserved for future extension when a
576 :class:`ThreadGroup` class is implemented.
577
578 *target* is the callable object to be invoked by the :meth:`run` method.
579 Defaults to ``None``, meaning nothing is called.
580
581 *name* is the thread name. By default, a unique name is constructed of the form
582 "Thread-*N*" where *N* is a small decimal number.
583
584 *args* is the argument tuple for the target invocation. Defaults to ``()``.
585
586 *kwargs* is a dictionary of keyword arguments for the target invocation.
587 Defaults to ``{}``.
588
589 If the subclass overrides the constructor, it must make sure to invoke the base
590 class constructor (``Thread.__init__()``) before doing anything else to the
591 thread.
592
593
594.. method:: Thread.start()
595
596 Start the thread's activity.
597
598 It must be called at most once per thread object. It arranges for the object's
599 :meth:`run` method to be invoked in a separate thread of control.
600
601 This method will raise a :exc:`RuntimeException` if called more than once on the
602 same thread object.
603
604
605.. method:: Thread.run()
606
607 Method representing the thread's activity.
608
609 You may override this method in a subclass. The standard :meth:`run` method
610 invokes the callable object passed to the object's constructor as the *target*
611 argument, if any, with sequential and keyword arguments taken from the *args*
612 and *kwargs* arguments, respectively.
613
614
615.. method:: Thread.join([timeout])
616
617 Wait until the thread terminates. This blocks the calling thread until the
618 thread whose :meth:`join` method is called terminates -- either normally or
619 through an unhandled exception -- or until the optional timeout occurs.
620
621 When the *timeout* argument is present and not ``None``, it should be a floating
622 point number specifying a timeout for the operation in seconds (or fractions
Georg Brandlf9926402008-06-13 06:32:25 +0000623 thereof). As :meth:`join` always returns ``None``, you must call :meth:`is_alive`
Georg Brandlfceab5a2008-01-19 20:08:23 +0000624 after :meth:`join` to decide whether a timeout happened -- if the thread is
625 still alive, the :meth:`join` call timed out.
Georg Brandl116aa622007-08-15 14:28:22 +0000626
627 When the *timeout* argument is not present or ``None``, the operation will block
628 until the thread terminates.
629
630 A thread can be :meth:`join`\ ed many times.
631
Georg Brandlfceab5a2008-01-19 20:08:23 +0000632 :meth:`join` raises a :exc:`RuntimeError` if an attempt is made to join
633 the current thread as that would cause a deadlock. It is also an error to
634 :meth:`join` a thread before it has been started and attempts to do so
635 raises the same exception.
Georg Brandl116aa622007-08-15 14:28:22 +0000636
637
Benjamin Peterson8bdd5452008-08-18 22:38:41 +0000638.. method:: Thread.getName()
639 Thread.setName()
Georg Brandl116aa622007-08-15 14:28:22 +0000640
Benjamin Peterson8bdd5452008-08-18 22:38:41 +0000641 Old API for :attr:`~Thread.name`.
Georg Brandl116aa622007-08-15 14:28:22 +0000642
643
Benjamin Peterson8bdd5452008-08-18 22:38:41 +0000644.. attribute:: Thread.name
Georg Brandl116aa622007-08-15 14:28:22 +0000645
Benjamin Peterson8bdd5452008-08-18 22:38:41 +0000646 A string used for identification purposes only. It has no semantics.
Georg Brandl116aa622007-08-15 14:28:22 +0000647 Multiple threads may be given the same name. The initial name is set by the
648 constructor.
649
650
Benjamin Peterson773c17b2008-08-18 16:45:31 +0000651.. attribute:: Thread.ident
Georg Brandl0c77a822008-06-10 16:37:50 +0000652
Benjamin Peterson773c17b2008-08-18 16:45:31 +0000653 The 'thread identifier' of this thread or ``None`` if the thread has not been
654 started. This is a nonzero integer. See the :func:`thread.get_ident()`
Benjamin Peterson672b8032008-06-11 19:14:14 +0000655 function. Thread identifiers may be recycled when a thread exits and another
Benjamin Peterson773c17b2008-08-18 16:45:31 +0000656 thread is created. The identifier is available even after the thread has
Benjamin Peterson672b8032008-06-11 19:14:14 +0000657 exited.
Georg Brandl0c77a822008-06-10 16:37:50 +0000658
659
Benjamin Peterson672b8032008-06-11 19:14:14 +0000660.. method:: Thread.is_alive()
Georg Brandl116aa622007-08-15 14:28:22 +0000661
662 Return whether the thread is alive.
663
664 Roughly, a thread is alive from the moment the :meth:`start` method returns
665 until its :meth:`run` method terminates. The module function :func:`enumerate`
666 returns a list of all alive threads.
667
668
Benjamin Peterson8bdd5452008-08-18 22:38:41 +0000669.. method:: Thread.isDaemon()
670 Thread.setDaemon()
Georg Brandl116aa622007-08-15 14:28:22 +0000671
Benjamin Peterson8bdd5452008-08-18 22:38:41 +0000672 Old API for :attr:`~Thread.daemon`.
Georg Brandl116aa622007-08-15 14:28:22 +0000673
674
Benjamin Peterson8bdd5452008-08-18 22:38:41 +0000675.. attribute:: Thread.daemon
Georg Brandl116aa622007-08-15 14:28:22 +0000676
Benjamin Peterson8bdd5452008-08-18 22:38:41 +0000677 The thread's daemon flag. This must be set before :meth:`start` is called,
678 otherwise :exc:`RuntimeError` is raised.
Georg Brandl116aa622007-08-15 14:28:22 +0000679
680 The initial value is inherited from the creating thread.
681
682 The entire Python program exits when no alive non-daemon threads are left.
683
684
685.. _timer-objects:
686
687Timer Objects
688-------------
689
690This class represents an action that should be run only after a certain amount
691of time has passed --- a timer. :class:`Timer` is a subclass of :class:`Thread`
692and as such also functions as an example of creating custom threads.
693
694Timers are started, as with threads, by calling their :meth:`start` method. The
695timer can be stopped (before its action has begun) by calling the :meth:`cancel`
696method. The interval the timer will wait before executing its action may not be
697exactly the same as the interval specified by the user.
698
699For example::
700
701 def hello():
Collin Winterc79461b2007-09-01 23:34:30 +0000702 print("hello, world")
Georg Brandl116aa622007-08-15 14:28:22 +0000703
704 t = Timer(30.0, hello)
705 t.start() # after 30 seconds, "hello, world" will be printed
706
707
708.. class:: Timer(interval, function, args=[], kwargs={})
709
710 Create a timer that will run *function* with arguments *args* and keyword
711 arguments *kwargs*, after *interval* seconds have passed.
712
713
714.. method:: Timer.cancel()
715
716 Stop the timer, and cancel the execution of the timer's action. This will only
717 work if the timer is still in its waiting stage.
718
719
720.. _with-locks:
721
722Using locks, conditions, and semaphores in the :keyword:`with` statement
723------------------------------------------------------------------------
724
725All of the objects provided by this module that have :meth:`acquire` and
726:meth:`release` methods can be used as context managers for a :keyword:`with`
727statement. The :meth:`acquire` method will be called when the block is entered,
728and :meth:`release` will be called when the block is exited.
729
730Currently, :class:`Lock`, :class:`RLock`, :class:`Condition`,
731:class:`Semaphore`, and :class:`BoundedSemaphore` objects may be used as
732:keyword:`with` statement context managers. For example::
733
Georg Brandl116aa622007-08-15 14:28:22 +0000734 import threading
735
736 some_rlock = threading.RLock()
737
738 with some_rlock:
Collin Winterc79461b2007-09-01 23:34:30 +0000739 print("some_rlock is locked while this executes")
Georg Brandl116aa622007-08-15 14:28:22 +0000740
Christian Heimesdd15f6c2008-03-16 00:07:10 +0000741
742.. _threaded-imports:
743
744Importing in threaded code
745--------------------------
746
747While the import machinery is thread safe, there are two key
748restrictions on threaded imports due to inherent limitations in the way
749that thread safety is provided:
750
751* Firstly, other than in the main module, an import should not have the
752 side effect of spawning a new thread and then waiting for that thread in
753 any way. Failing to abide by this restriction can lead to a deadlock if
754 the spawned thread directly or indirectly attempts to import a module.
755* Secondly, all import attempts must be completed before the interpreter
756 starts shutting itself down. This can be most easily achieved by only
757 performing imports from non-daemon threads created through the threading
758 module. Daemon threads and threads created directly with the thread
759 module will require some other form of synchronization to ensure they do
760 not attempt imports after system shutdown has commenced. Failure to
761 abide by this restriction will lead to intermittent exceptions and
762 crashes during interpreter shutdown (as the late imports attempt to
763 access machinery which is no longer in a valid state).