Added a test for the ability to specify a class attribute in Formatter configuration...
[python.git] / Doc / lib / libdummythreading.tex
blob874f596b84f1bb8edffe5624b3e12062f941f921
1 \section{\module{dummy_threading} ---
2 Drop-in replacement for the \module{threading} module}
4 \declaremodule[dummythreading]{standard}{dummy_threading}
5 \modulesynopsis{Drop-in replacement for the \refmodule{threading} module.}
7 This module provides a duplicate interface to the
8 \refmodule{threading} module. It is meant to be imported when the
9 \refmodule{thread} module is not provided on a platform.
11 Suggested usage is:
13 \begin{verbatim}
14 try:
15 import threading as _threading
16 except ImportError:
17 import dummy_threading as _threading
18 \end{verbatim}
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
22 often occurs with blocking I/O.