diff options
author | Mark Summerfield <list@qtrac.plus.com> | 2007-09-04 08:16:15 (GMT) |
---|---|---|
committer | Mark Summerfield <list@qtrac.plus.com> | 2007-09-04 08:16:15 (GMT) |
commit | fcb444a8bf249e93eda5803469b33bb42781959a (patch) | |
tree | d371b84ecd68455819f5dcc309db20b356596eb3 /Doc/library/thread.rst | |
parent | 691632f14d4c9ebf0703ccbf7aa9f37ca8df982d (diff) | |
download | cpython-fcb444a8bf249e93eda5803469b33bb42781959a.zip cpython-fcb444a8bf249e93eda5803469b33bb42781959a.tar.gz cpython-fcb444a8bf249e93eda5803469b33bb42781959a.tar.bz2 |
Added cross-references plus a note about dict & list shallow copying.
Diffstat (limited to 'Doc/library/thread.rst')
-rw-r--r-- | Doc/library/thread.rst | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Doc/library/thread.rst b/Doc/library/thread.rst index c9be598..ca70403 100644 --- a/Doc/library/thread.rst +++ b/Doc/library/thread.rst @@ -13,9 +13,11 @@ single: semaphores, binary This module provides low-level primitives for working with multiple threads -(a.k.a. :dfn:`light-weight processes` or :dfn:`tasks`) --- multiple threads of +(also called :dfn:`light-weight processes` or :dfn:`tasks`) --- multiple threads of control sharing their global data space. For synchronization, simple locks -(a.k.a. :dfn:`mutexes` or :dfn:`binary semaphores`) are provided. +(also called :dfn:`mutexes` or :dfn:`binary semaphores`) are provided. +The :mod:`threading` module provides an easier to use and higher-level +threading API built on top of this module. .. index:: single: pthreads |