0
0
mirror of https://github.com/python/cpython.git synced 2024-11-29 00:56:12 +01:00
cpython/Doc/lib/libdummythread.tex
Guido van Rossum ad50ca91a9 Brett Cannon's dummy_thread and dummy_threading modules (SF patch
622537), with some nitpicking editorial changes.
2002-12-30 22:30:22 +00:00

23 lines
704 B
TeX

\section{\module{dummy_thread} ---
Drop-in replacement for the \module{thread} module}
\declaremodule[dummythread]{standard}{dummy_thread}
\modulesynopsis{Drop-in replacement for the thread module.}
This module provides a duplicate interface to the \refmodule{thread} module. It
is meant to be imported when the \module{thread} module is not provided on a
platform.
Suggested usage is:
\begin{verbatim}
try:
import thread as _thread
except ImportError:
import dummy_thread as _thread
\end{verbatim}
Be careful to not use this module where deadlock might occur from a thread
being created that blocks waiting for another thread to be created. This
often occurs with blocking I/O.