Added section on passing contextual information to logging and documentation for...
[python.git] / Doc / library / dummy_thread.rst
blob0b2cb179a60e35f7bc33c761354d9dcdc5162e88
2 :mod:`dummy_thread` --- Drop-in replacement for the :mod:`thread` module
3 ========================================================================
5 .. module:: dummy_thread
6    :synopsis: Drop-in replacement for the thread module.
9 This module provides a duplicate interface to the :mod:`thread` module.  It is
10 meant to be imported when the :mod:`thread` module is not provided on a
11 platform.
13 Suggested usage is::
15    try:
16        import thread as _thread
17    except ImportError:
18        import dummy_thread as _thread
20 Be careful to not use this module where deadlock might occur from a thread
21 being created that blocks waiting for another thread to be created.  This  often
22 occurs with blocking I/O.